Skip to content

Commit cfe4e78

Browse files
Bump jakarta.annotation:jakarta.annotation-api from 2.1.1 to 3.0.0 (#372)
* Bump jakarta.annotation:jakarta.annotation-api from 2.1.1 to 3.0.0 Bumps [jakarta.annotation:jakarta.annotation-api](https://github.com/jakartaee/common-annotations-api) from 2.1.1 to 3.0.0. - [Commits](jakartaee/common-annotations-api@2.1.1...3.0.0) --- updated-dependencies: - dependency-name: jakarta.annotation:jakarta.annotation-api dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * De-duplicate jakarta-annotation versions --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marvin Froeder <[email protected]> Co-authored-by: Marvin <[email protected]>
1 parent 391c667 commit cfe4e78

File tree

4 files changed

+9
-20
lines changed

4 files changed

+9
-20
lines changed

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@
128128
<hibernate.validator.version>8.0.1.Final</hibernate.validator.version>
129129
<eclipselink.version>4.0.2</eclipselink.version>
130130
<jpa.version>3.1.0</jpa.version>
131+
<jakarta.annotation.version>3.0.0</jakarta.annotation.version>
131132

132133
<mvn.version>3.9.6</mvn.version>
133134
<guava.version>33.1.0-jre</guava.version>
@@ -256,7 +257,7 @@
256257
<dependency>
257258
<groupId>jakarta.annotation</groupId>
258259
<artifactId>jakarta.annotation-api</artifactId>
259-
<version>2.1.1</version>
260+
<version>${jakarta.annotation.version}</version>
260261
</dependency>
261262
<dependency>
262263
<groupId>jakarta.validation</groupId>

querydsl-libraries/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<dependency>
4949
<groupId>jakarta.annotation</groupId>
5050
<artifactId>jakarta.annotation-api</artifactId>
51-
<version>2.1.1</version>
51+
<version>${jakarta.annotation.version}</version>
5252
<scope>provided</scope>
5353
</dependency>
5454
<dependency>

querydsl-libraries/querydsl-core/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
<dependency>
5353
<groupId>jakarta.annotation</groupId>
5454
<artifactId>jakarta.annotation-api</artifactId>
55-
<version>2.1.1</version>
5655
</dependency>
5756
</dependencies>
5857

querydsl-libraries/querydsl-jpa/pom.xml

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,12 @@
171171
<version>2.9.1</version>
172172
<scope>test</scope>
173173
</dependency>
174+
175+
<dependency>
176+
<groupId>jakarta.annotation</groupId>
177+
<artifactId>jakarta.annotation-api</artifactId>
178+
<scope>provided</scope>
179+
</dependency>
174180
</dependencies>
175181

176182
<build>
@@ -334,21 +340,4 @@
334340
</plugins>
335341
</build>
336342

337-
<profiles>
338-
<profile>
339-
<id>java-11</id>
340-
<activation>
341-
<jdk>[11,)</jdk>
342-
</activation>
343-
<dependencies>
344-
<dependency>
345-
<groupId>jakarta.annotation</groupId>
346-
<artifactId>jakarta.annotation-api</artifactId>
347-
<version>2.1.1</version>
348-
<scope>provided</scope>
349-
</dependency>
350-
</dependencies>
351-
</profile>
352-
</profiles>
353-
354343
</project>

0 commit comments

Comments
 (0)