Skip to content

Commit

Permalink
[pom] use properties for dependencies version
Browse files Browse the repository at this point in the history
  • Loading branch information
mxfo committed Nov 25, 2024
1 parent 243955a commit 303d3be
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
<fusion.version>1.0.21</fusion.version>
<tomcat.version>10.1.33</tomcat.version>
<xbean.version>4.24</xbean.version>
<commons-compress.version>1.26.2</commons-compress.version>
<commons-io.version>2.18.0</commons-io.version>
<h2.version>2.2.224</h2.version>
</properties>

<modules>
Expand All @@ -52,7 +55,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.2.224</version>
<version>${h2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -63,7 +66,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.26.2</version>
<version>${commons-compress.version}</version>
<!-- [CVE-2024-47554] in commons-io:commons-io:jar:2.11.0 -->
<exclusions>
<exclusion>
Expand All @@ -75,7 +78,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.18.0</version>
<version>${commons-io.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit 303d3be

Please sign in to comment.