Skip to content

Commit

Permalink
libs: Update to voms-api-java 2.0.10.1
Browse files Browse the repository at this point in the history
Motivation:

The Java VOMS API version 2 relies on BouncyCastle 1.45. We however need
version 1.46 to resolve lock congestion issues on CRL verification with
JGlobus. Another patch updates voms-api-java to BouncyCastle 1.46.

Modification:

Changes the dependency to the new voms-api-java artifact id and excludes log4j
and the ext version of bcprov that voms-api-java would otherwise pull in. This
patch is not final, as we need a proper version of the custom voms-api-java
build first.

Result:

The VOMS gPlazma plugin works with BouncyCatle 1.46.

Target: trunk
Request: 2.12
Reqeust: 2.11
Request: 2.10
Require-notes: yes
Require-book: no
Acked-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
Patch: https://rb.dcache.org/r/8280/
(cherry picked from commit 8ee7fa5)
Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
  • Loading branch information
gbehrmann authored and kofemann committed Jun 4, 2015
1 parent 6ddd5f0 commit a9da0bb
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 17 deletions.
4 changes: 2 additions & 2 deletions modules/dcache-webdav/pom.xml
Expand Up @@ -85,8 +85,8 @@
<artifactId>spring-expression</artifactId>
</dependency>
<dependency>
<groupId>eu.emi</groupId>
<artifactId>vomsjapi</artifactId>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions modules/gplazma2-grid/pom.xml
Expand Up @@ -30,8 +30,8 @@


<dependency>
<groupId>eu.emi</groupId>
<artifactId>vomsjapi</artifactId>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
</dependency>
<dependency>
<groupId>org.dcache</groupId>
Expand Down
4 changes: 2 additions & 2 deletions modules/gplazma2-gsi/pom.xml
Expand Up @@ -28,8 +28,8 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>eu.emi</groupId>
<artifactId>vomsjapi</artifactId>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions modules/gplazma2-voms/pom.xml
Expand Up @@ -23,8 +23,8 @@
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>eu.emi</groupId>
<artifactId>vomsjapi</artifactId>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
</dependency>
<dependency>
<groupId>org.dcache</groupId>
Expand Down
4 changes: 2 additions & 2 deletions modules/gplazma2-xacml/pom.xml
Expand Up @@ -27,8 +27,8 @@
<artifactId>ssl-proxies</artifactId>
</dependency>
<dependency>
<groupId>eu.emi</groupId>
<artifactId>vomsjapi</artifactId>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
</dependency>
<dependency>
<groupId>eu.emi</groupId>
Expand Down
4 changes: 2 additions & 2 deletions modules/gplazma2/pom.xml
Expand Up @@ -28,8 +28,8 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>eu.emi</groupId>
<artifactId>vomsjapi</artifactId>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
</dependency>

<dependency>
Expand Down
4 changes: 2 additions & 2 deletions modules/javatunnel/pom.xml
Expand Up @@ -34,8 +34,8 @@
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>eu.emi</groupId>
<artifactId>vomsjapi</artifactId>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
</dependency>
</dependencies>
</project>
16 changes: 13 additions & 3 deletions pom.xml
Expand Up @@ -209,9 +209,19 @@
<version>1.0.1-1</version>
</dependency>
<dependency>
<groupId>eu.emi</groupId>
<artifactId>vomsjapi</artifactId>
<version>2.0.6</version>
<groupId>org.italiangrid</groupId>
<artifactId>voms-api-java</artifactId>
<version>2.0.10.1</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-ext-jdk16</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glite.authz</groupId>
Expand Down

0 comments on commit a9da0bb

Please sign in to comment.