Skip to content

Commit

Permalink
libs: fix unexpected transient dependencies of rados4j
Browse files Browse the repository at this point in the history
fixes commit 2f268fb

rados4j had transient dependencies which are indirectly used by dcache.
Make this dependency explicit.

Target: master
Require-book: no
Require-notes: no
  • Loading branch information
kofemann committed Oct 20, 2023
1 parent 2f268fb commit f7e1913
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
19 changes: 18 additions & 1 deletion modules/dcache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,24 @@
<groupId>com.github.parboiled1</groupId>
<artifactId>grappa</artifactId>
</dependency>
<dependency>
<!-- grappa needs asm to work -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
</dependency>
<dependency>
<groupId>org.datanucleus</groupId>
<artifactId>datanucleus-core</artifactId>
</dependency>
Expand Down
19 changes: 18 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@
<bouncycastle.version>1.67</bouncycastle.version>
<datanucleus-core.version>5.2.2</datanucleus-core.version>
<datanucleus.plugin.version>5.2.1</datanucleus.plugin.version>
<asm.version>7.2</asm.version>
<asm-tools.version>5.0.3</asm-tools.version>
</properties>

<scm>
Expand Down Expand Up @@ -423,7 +425,22 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.2</version>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>${asm-tools.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>${asm-tools.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>${asm-tools.version}</version>
</dependency>
<dependency>
<groupId>org.datanucleus</groupId>
Expand Down

0 comments on commit f7e1913

Please sign in to comment.