Skip to content

Commit

Permalink
fix jspecify package name
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhoss committed Jan 8, 2023
1 parent df7a4b4 commit 1cabf60
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion memoization-core/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* The core module contains the core interfaces and utilities of memoization.java
*/
@org.jspecify.nullness.NullMarked
@org.jspecify.annotations.NullMarked
module wtf.metio.memoization.core {

requires com.github.spotbugs.annotations;
Expand Down
2 changes: 1 addition & 1 deletion memoization-jdk/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* The JDK module contains the implementation covering JDK interfaces.
*/
@org.jspecify.nullness.NullMarked
@org.jspecify.annotations.NullMarked
module wtf.metio.memoization.jdk {

requires wtf.metio.memoization.core;
Expand Down
2 changes: 1 addition & 1 deletion memoization-jool/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* The jOOL module contains the implementation covering jOOL interfaces.
*/
@org.jspecify.nullness.NullMarked
@org.jspecify.annotations.NullMarked
module wtf.metio.memoization.jool {

requires wtf.metio.memoization.core;
Expand Down
2 changes: 1 addition & 1 deletion memoization-lambda/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* The lambda module contains the implementation covering lambda interfaces.
*/
@org.jspecify.nullness.NullMarked
@org.jspecify.annotations.NullMarked
module wtf.metio.memoization.lambda {

requires wtf.metio.memoization.core;
Expand Down
2 changes: 1 addition & 1 deletion memoization-rxjava/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* The RxJava module contains the implementation covering RxJava interfaces.
*/
@org.jspecify.nullness.NullMarked
@org.jspecify.annotations.NullMarked
module wtf.metio.memoization.rxjava {

requires wtf.metio.memoization.core;
Expand Down
4 changes: 4 additions & 0 deletions memoization-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
</dependency>
</dependencies>

</project>
4 changes: 3 additions & 1 deletion memoization-tck/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
/**
* The tck module contains re-usable test cases for the various memoization.java modules.
*/
@org.jspecify.annotations.NullMarked
module wtf.metio.memoization.tck {

requires org.junit.jupiter.api;
requires wtf.metio.memoization.core;
requires org.junit.jupiter.api;
requires org.jspecify;

exports wtf.metio.memoization.tck;

Expand Down

0 comments on commit 1cabf60

Please sign in to comment.