Skip to content

Commit

Permalink
updated to latest 3rd party versions
Browse files Browse the repository at this point in the history
  • Loading branch information
profhenry committed Dec 31, 2023
1 parent 611275f commit fed885f
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" child.project.url.inherit.append.path="false">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
child.project.url.inherit.append.path="false">
<modelVersion>4.0.0</modelVersion>

<groupId>de.profhenry.sshsig</groupId>
Expand Down Expand Up @@ -30,7 +33,9 @@
</developer>
</developers>

<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<scm child.scm.connection.inherit.append.path="false"
child.scm.developerConnection.inherit.append.path="false"
child.scm.url.inherit.append.path="false">
<connection>scm:git:git@github.com:profhenry/sshsig.git</connection>
<url>https://github.com/profhenry/sshsig.git</url>
<developerConnection>scm:git:git@github.com:profhenry/sshsig.git</developerConnection>
Expand Down Expand Up @@ -64,7 +69,12 @@
<maven.compiler.source>1.8</maven.compiler.source>

<version.slf4j>1.7.36</version.slf4j>
<version.bouncycastle>1.77</version.bouncycastle>
<version.eddsa>0.3.0</version.eddsa>
<version.sshd>2.11.0</version.sshd>
<version.tomcat-apr>5.5.23</version.tomcat-apr>
<version.junit>5.10.0</version.junit>
<version.assertj>3.24.2</version.assertj>
</properties>

<dependencyManagement>
Expand All @@ -84,23 +94,27 @@
<dependency>
<groupId>net.i2p.crypto</groupId>
<artifactId>eddsa</artifactId>
<version>0.3.0</version>
<version>${version.eddsa}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${version.bouncycastle}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-debug-jdk18on</artifactId>
<version>1.76</version>
<version>${version.bouncycastle}</version>
</dependency>
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
<version>2.10.0</version>
<version>${version.sshd}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/tomcat/tomcat-apr -->
<dependency>
<groupId>tomcat</groupId>
<artifactId>tomcat-apr</artifactId>
<version>5.5.23</version>
<version>${version.tomcat-apr}</version>
</dependency>
<!-- TEST dependencies ================================================================================= -->
<dependency>
Expand All @@ -113,7 +127,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.24.2</version>
<version>${version.assertj}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down

0 comments on commit fed885f

Please sign in to comment.