Skip to content

Commit

Permalink
pom.xml: replace property in artifact name.
Browse files Browse the repository at this point in the history
Signed-off-by: Achim Kraus <achim.kraus@cloudcoap.net>
  • Loading branch information
boaks committed Feb 8, 2023
1 parent 28f82ff commit 5937156
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -834,32 +834,31 @@
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<bc.art>jdk15to18</bc.art>
<bc.version>1.72</bc.version>
<slf4j.version>1.7.36</slf4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-${bc.art}</artifactId>
<artifactId>bcpkix-jdk15to18</artifactId>
<version>${bc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-${bc.art}</artifactId>
<artifactId>bcprov-jdk15to18</artifactId>
<version>${bc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bctls-${bc.art}</artifactId>
<artifactId>bctls-jdk15to18</artifactId>
<version>${bc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-${bc.art}</artifactId>
<artifactId>bcutil-jdk15to18</artifactId>
<version>${bc.version}</version>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -890,32 +889,31 @@
<activeByDefault>false</activeByDefault>
</activation>
<properties>
<bc.art>jdk18on</bc.art>
<bc.version>1.72</bc.version>
<slf4j.version>1.7.36</slf4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-${bc.art}</artifactId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-${bc.art}</artifactId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bctls-${bc.art}</artifactId>
<artifactId>bctls-jdk18on</artifactId>
<version>${bc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-${bc.art}</artifactId>
<artifactId>bcutil-jdk18on</artifactId>
<version>${bc.version}</version>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit 5937156

Please sign in to comment.