Skip to content

Commit

Permalink
Merge pull request #255 from ascopes/task/javax-annotation
Browse files Browse the repository at this point in the history
Make implicit javax.annotation dependency into an explicit one
  • Loading branch information
ascopes authored Jun 21, 2024
2 parents b033b80 + 9a0655f commit 1793446
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
<!-- Dependencies -->
<assertj.version>3.26.0</assertj.version>
<immutables.version>2.10.1</immutables.version>
<javax-annotation.version>1.3.2</javax-annotation.version>
<jspecify.version>0.3.0</jspecify.version>
<junit.version>5.10.2</junit.version>
<maven-core.version>3.9.8</maven-core.version>
Expand Down Expand Up @@ -151,6 +152,12 @@
<version>${memoryfilesystem.version}</version>
</dependency>

<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>${javax-annotation.version}</version>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions protobuf-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@
</dependencyManagement>

<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
Expand Down

0 comments on commit 1793446

Please sign in to comment.