Skip to content

Commit

Permalink
HDDS-11090. Add explicit dependency for jcip-annotations (#6892)
Browse files Browse the repository at this point in the history
  • Loading branch information
adoroszlai authored Jul 1, 2024
1 parent 70a73a1 commit 148cbe4
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hadoop-hdds/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
</dependency>
<dependency>
<groupId>com.github.stephenc.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions hadoop-ozone/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>ozone-common</artifactId>
</dependency>

<dependency>
<groupId>com.github.stephenc.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>org.apache.ozone</groupId>
Expand Down
5 changes: 5 additions & 0 deletions hadoop-ozone/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>hadoop-hdfs-client</artifactId>
</dependency>

<dependency>
<groupId>com.github.stephenc.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>io.grpc</groupId>
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<jetty.version>9.4.54.v20240208</jetty.version>
<java.dev.jna.version>5.2.0</java.dev.jna.version>
<jcip-annotations.version>1.0-1</jcip-annotations.version>
<curator.version>4.2.0</curator.version>

<!-- number of threads/forks to use when running tests in parallel, see parallel-tests profile -->
Expand Down Expand Up @@ -483,6 +484,11 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<artifactId>zstd-jni</artifactId>
<version>${zstd-jni.version}</version>
</dependency>
<dependency>
<groupId>com.github.stephenc.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
<version>${jcip-annotations.version}</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
Expand Down

0 comments on commit 148cbe4

Please sign in to comment.