Skip to content

Commit

Permalink
util, test-util: Fix org.eclipse.jdt.annotation in module-info
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlschuetter committed Dec 12, 2024
1 parent 49e7003 commit f796992
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kohlschutter-test-util/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
exports com.kohlschutter.testutil;

requires static com.kohlschutter.annotations.compiletime;
requires static org.eclipse.jdt.annotation;
requires transitive org.junit.jupiter.api;
requires transitive com.kohlschutter.util;
requires java.logging;
requires org.eclipse.jdt.annotation;
}
5 changes: 2 additions & 3 deletions kohlschutter-util/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
*/
module com.kohlschutter.util {
requires static com.kohlschutter.annotations.compiletime;
requires static org.eclipse.jdt.annotation;
requires static java.management;

exports com.kohlschutter.util;

requires org.eclipse.jdt.annotation;
requires static java.management;
}

0 comments on commit f796992

Please sign in to comment.