Skip to content

Commit

Permalink
Merge pull request #470 from iterate-ch/issue/465
Browse files Browse the repository at this point in the history
Review dependencies
  • Loading branch information
dkocher authored Apr 24, 2024
2 parents 063415f + 5bf86ef commit e4d21d9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@
<maven.compiler.target>8</maven.compiler.target>
<!-- Skip integration tests by default with failsafe plugin -->
<skipITs>false</skipITs>
<httpclient.version>4.5.14</httpclient.version>
<slf4j.version>2.0.7</slf4j.version>
</properties>
<dependencyManagement>
<dependencies>
Expand All @@ -266,13 +268,18 @@
<artifactId>jakarta.activation-api</artifactId>
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.16.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
<version>${httpclient.version}</version>
</dependency>
<!-- Sardine has a runtime dependency to JAXB. As this not part of JDK 11 anymore,
we need a dependency on JAXB-->
Expand All @@ -290,13 +297,13 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.7</version>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.7</version>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit e4d21d9

Please sign in to comment.