Skip to content

Commit 907c06b

Browse files
committed
Create variables for commonly used dependencies
1 parent 7265b43 commit 907c06b

File tree

7 files changed

+17
-13
lines changed

7 files changed

+17
-13
lines changed

common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>commons-codec</groupId>
3030
<artifactId>commons-codec</artifactId>
31-
<version>1.15</version>
31+
<version>${commons-codec.version}</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>org.apache.commons</groupId>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>commons-io</groupId>
4040
<artifactId>commons-io</artifactId>
41-
<version>2.12.0</version>
41+
<version>${commons-io.version}</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>org.bouncycastle</groupId>

gamsaml20/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>org.bouncycastle</groupId>
2121
<artifactId>bcprov-jdk18on</artifactId>
22-
<version>1.78.1</version>
22+
<version>${org.bouncycastle.version}</version>
2323
<scope>compile</scope>
2424
</dependency>
2525

@@ -32,12 +32,12 @@
3232
<dependency>
3333
<groupId>org.apache.santuario</groupId>
3434
<artifactId>xmlsec</artifactId>
35-
<version>3.0.3</version>
35+
<version>${xmlsec.version}</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>commons-io</groupId>
3939
<artifactId>commons-io</artifactId>
40-
<version>2.11.0</version>
40+
<version>${commons-io.version}</version>
4141
<scope>compile</scope>
4242
</dependency>
4343
</dependencies>

gamutils/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
<dependency>
2525
<groupId>org.bouncycastle</groupId>
2626
<artifactId>bcprov-jdk18on</artifactId>
27-
<version>1.78.1</version>
27+
<version>${org.bouncycastle.version}</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.bouncycastle</groupId>
3131
<artifactId>bcpkix-jdk18on</artifactId>
32-
<version>1.78.1</version>
32+
<version>${org.bouncycastle.version}</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>org.apache.logging.log4j</groupId>
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>commons-io</groupId>
4141
<artifactId>commons-io</artifactId>
42-
<version>2.11.0</version>
42+
<version>${commons-io.version}</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>${project.groupId}</groupId>
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>commons-codec</groupId>
5151
<artifactId>commons-codec</artifactId>
52-
<version>1.15</version>
52+
<version>${commons-codec.version}</version>
5353
<scope>test</scope>
5454
</dependency>
5555
<dependency>

gxjwt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>commons-codec</groupId>
4848
<artifactId>commons-codec</artifactId>
49-
<version>1.15</version>
49+
<version>${commons-codec.version}</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.apache.logging.log4j</groupId>

gxxmlsignature/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
<dependency>
2727
<groupId>org.apache.santuario</groupId>
2828
<artifactId>xmlsec</artifactId>
29-
<version>3.0.3</version>
29+
<version>${xmlsec.version}</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>commons-codec</groupId>
3333
<artifactId>commons-codec</artifactId>
34-
<version>1.15</version>
34+
<version>${commons-codec.version}</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>org.apache.logging.log4j</groupId>

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@
2929
<log4j.version>2.21.1</log4j.version>
3030
<io.opentelemetry.version>1.28.0</io.opentelemetry.version>
3131
<org.bouncycastle.version>1.78.1</org.bouncycastle.version>
32+
<commons-io.version>2.12.0</commons-io.version>
33+
<commons-codec.version>1.15</commons-codec.version>
34+
<xmlsec.version>3.0.3</xmlsec.version>
35+
3236
</properties>
3337

3438
<organization>

securityapicommons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>commons-io</groupId>
3939
<artifactId>commons-io</artifactId>
40-
<version>2.11.0</version>
40+
<version>${commons-io.version}</version>
4141
</dependency>
4242
</dependencies>
4343

0 commit comments

Comments
 (0)