Skip to content

Commit 43790ef

Browse files
committed
feat: Replace JSR-305 nullability annotations with JSpecify
Migrate null-safety annotations from the outdated JSR-305 standard to the modern JSpecify standard. Changes include: - Replaced `com.google.code.findbugs:jsr305` dependency with `org.jspecify:jspecify:1.0.0` in `aspectran-utils/pom.xml`. - Updated all source files to use `org.jspecify.annotations.NonNull`, `org.jspecify.annotations.Nullable`, and `org.jspecify.annotations.NullMarked` (replacing `NonNullApi` and `NonNullFields`). - Removed the deprecated `com.aspectran.utils.annotation.jsr305` package.
1 parent 55b826f commit 43790ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_pages/en/aspectran/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Create a `pom.xml` file in the project root and copy and paste the content below
4444
<maven.compiler.release>21</maven.compiler.release>
4545
<maven.compiler.parameters>true</maven.compiler.parameters>
4646

47-
<aspectran.version>9.4.0</aspectran.version>
47+
<aspectran.version>9.4.1-SNAPSHOT</aspectran.version>
4848
</properties>
4949

5050
<repositories>

_pages/ko/aspectran/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ cd hello-aspectran
4444
<maven.compiler.release>21</maven.compiler.release>
4545
<maven.compiler.parameters>true</maven.compiler.parameters>
4646

47-
<aspectran.version>9.4.0</aspectran.version>
47+
<aspectran.version>9.4.1-SNAPSHOT</aspectran.version>
4848
</properties>
4949

5050
<repositories>

0 commit comments

Comments
 (0)