Skip to content

Commit

Permalink
Make JUnit only test and add module info
Browse files Browse the repository at this point in the history
  • Loading branch information
C0urante authored Dec 24, 2023
2 parents 69d7479 + c56d1ce commit a9da390
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,13 @@
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down
9 changes: 9 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module io.github.c0urante.joplin {
requires java.desktop;
requires java.net.http;
requires com.fasterxml.jackson.databind;
requires org.bouncycastle.tls;

exports io.github.c0urante.joplin;
exports io.github.c0urante.joplin.errors;
}

0 comments on commit a9da390

Please sign in to comment.