Skip to content

Commit 80668ec

Browse files
authored
[JAVA-37377] Upgrade core-java-module/core-java-annotations to jakarta namespace (#17101)
1 parent 92324d8 commit 80668ec

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core-java-modules/core-java-annotations/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
<dependencies>
1717
<dependency>
18-
<groupId>javax.annotation</groupId>
19-
<artifactId>javax.annotation-api</artifactId>
20-
<version>1.3.2</version>
18+
<groupId>jakarta.annotation</groupId>
19+
<artifactId>jakarta.annotation-api</artifactId>
20+
<version>3.0.0</version>
2121
</dependency>
2222
</dependencies>
2323

core-java-modules/core-java-annotations/src/main/java/com/baeldung/annotations/AnnotatedClass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.baeldung.annotations;
22

3-
import javax.annotation.Generated;
3+
import jakarta.annotation.Generated;
44

55
@RetentionAnnotation
66
@Generated("Available only on source code")

0 commit comments

Comments
 (0)