Skip to content

Commit

Permalink
[#74] pull dependency versions into properties
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarwell committed Oct 27, 2023
1 parent 97db3f7 commit bcfabc7
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@

<ftpserver.version>1.1.1</ftpserver.version>
<project.build.outputTimestamp>2022-01-18T09:14:02Z</project.build.outputTimestamp>

<!-- logging -->
<dependency.slf4j.version>1.7.9</dependency.slf4j.version>

<!-- Test dependencies -->
<dependency.jetty.version>9.4.51.v20230217</dependency.jetty.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -181,12 +187,12 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.9</version>
<version>${dependency.slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.9</version>
<version>${dependency.slf4j.version}</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -219,13 +225,13 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.4.51.v20230217</version>
<version>${dependency.jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-http</artifactId>
<version>9.4.51.v20230217</version>
<version>${dependency.jetty.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit bcfabc7

Please sign in to comment.