Skip to content

Commit 5d0972d

Browse files
committed
upgrade dependencies
1 parent a3e61b9 commit 5d0972d

File tree

6 files changed

+41
-15
lines changed

6 files changed

+41
-15
lines changed

annotations/annotation-processing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<properties>
1717
<auto-service.version>1.0-rc2</auto-service.version>
18-
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
18+
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
1919
</properties>
2020

2121
<dependencies>

annotations/annotation-user/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313

1414
<artifactId>annotation-user</artifactId>
1515

16+
<properties>
17+
<junit.version>4.12</junit.version>
18+
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
19+
</properties>
20+
1621
<dependencies>
1722

1823
<dependency>
@@ -24,7 +29,7 @@
2429
<dependency>
2530
<groupId>junit</groupId>
2631
<artifactId>junit</artifactId>
27-
<version>4.12</version>
32+
<version>${junit.version}</version>
2833
<scope>test</scope>
2934
</dependency>
3035

@@ -37,7 +42,7 @@
3742
<plugin>
3843
<groupId>org.apache.maven.plugins</groupId>
3944
<artifactId>maven-compiler-plugin</artifactId>
40-
<version>3.5.1</version>
45+
<version>${maven-compiler-plugin.version}</version>
4146
<configuration>
4247
<source>1.8</source>
4348
<target>1.8</target>

apache-cxf/cxf-introduction/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,18 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>cxf-introduction</artifactId>
7+
78
<parent>
89
<groupId>com.baeldung</groupId>
910
<artifactId>apache-cxf</artifactId>
1011
<version>0.0.1-SNAPSHOT</version>
1112
</parent>
13+
1214
<properties>
13-
<cxf.version>3.1.6</cxf.version>
15+
<cxf.version>3.1.8</cxf.version>
1416
<surefire.version>2.19.1</surefire.version>
1517
</properties>
18+
1619
<build>
1720
<plugins>
1821
<plugin>
@@ -24,7 +27,7 @@
2427
</plugin>
2528
<plugin>
2629
<artifactId>maven-surefire-plugin</artifactId>
27-
<version>2.19.1</version>
30+
<version>${surefire.version}</version>
2831
<configuration>
2932
<excludes>
3033
<exclude>**/*LiveTest.java</exclude>
@@ -33,6 +36,7 @@
3336
</plugin>
3437
</plugins>
3538
</build>
39+
3640
<dependencies>
3741
<dependency>
3842
<groupId>org.apache.cxf</groupId>

apache-cxf/cxf-jaxrs-implementation/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>cxf-jaxrs-implementation</artifactId>
7+
78
<parent>
89
<groupId>com.baeldung</groupId>
910
<artifactId>apache-cxf</artifactId>
1011
<version>0.0.1-SNAPSHOT</version>
1112
</parent>
13+
1214
<properties>
1315
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<cxf.version>3.1.7</cxf.version>
16+
<cxf.version>3.1.8</cxf.version>
1517
<httpclient.version>4.5.2</httpclient.version>
1618
<surefire.version>2.19.1</surefire.version>
1719
</properties>
20+
1821
<build>
1922
<plugins>
2023
<plugin>
@@ -26,7 +29,7 @@
2629
</plugin>
2730
<plugin>
2831
<artifactId>maven-surefire-plugin</artifactId>
29-
<version>2.19.1</version>
32+
<version>${surefire.version}</version>
3033
<configuration>
3134
<excludes>
3235
<exclude>**/*LiveTest.java</exclude>
@@ -35,6 +38,7 @@
3538
</plugin>
3639
</plugins>
3740
</build>
41+
3842
<dependencies>
3943
<dependency>
4044
<groupId>org.apache.cxf</groupId>

apache-cxf/cxf-spring/pom.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
<dependency>
3434
<groupId>javax.servlet</groupId>
3535
<artifactId>javax.servlet-api</artifactId>
36-
<version>3.1.0</version>
36+
<version>${javax.servlet-api.version}</version>
3737
</dependency>
3838
</dependencies>
3939

4040
<build>
4141
<plugins>
4242
<plugin>
4343
<artifactId>maven-war-plugin</artifactId>
44-
<version>2.6</version>
44+
<version>${maven-war-plugin.version}</version>
4545
<configuration>
4646
<failOnMissingWebXml>false</failOnMissingWebXml>
4747
</configuration>
@@ -66,7 +66,7 @@
6666
<plugin>
6767
<groupId>org.codehaus.cargo</groupId>
6868
<artifactId>cargo-maven2-plugin</artifactId>
69-
<version>1.4.19</version>
69+
<version>${cargo-maven2-plugin.version}</version>
7070
<configuration>
7171
<container>
7272
<containerId>tomcat8x</containerId>
@@ -121,9 +121,13 @@
121121
</profiles>
122122

123123
<properties>
124-
<cxf.version>3.1.6</cxf.version>
125-
<spring.version>4.3.1.RELEASE</spring.version>
124+
<cxf.version>3.1.8</cxf.version>
125+
<spring.version>4.3.4.RELEASE</spring.version>
126+
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
127+
128+
<maven-war-plugin.version>2.6</maven-war-plugin.version>
126129
<surefire.version>2.19.1</surefire.version>
130+
<cargo-maven2-plugin.version>1.6.1</cargo-maven2-plugin.version>
127131
</properties>
128132

129133
</project>

apache-cxf/pom.xml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,36 @@
55
<artifactId>apache-cxf</artifactId>
66
<version>0.0.1-SNAPSHOT</version>
77
<packaging>pom</packaging>
8+
89
<modules>
910
<module>cxf-introduction</module>
1011
<module>cxf-spring</module>
1112
<module>cxf-jaxrs-implementation</module>
1213
</modules>
14+
15+
<properties>
16+
<junit.version>4.12</junit.version>
17+
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
18+
<exec-maven-plugin.version>1.5.0</exec-maven-plugin.version>
19+
</properties>
20+
1321
<dependencies>
1422
<dependency>
1523
<groupId>junit</groupId>
1624
<artifactId>junit</artifactId>
17-
<version>4.12</version>
25+
<version>${junit.version}</version>
1826
<scope>test</scope>
1927
</dependency>
2028
</dependencies>
29+
2130
<build>
2231
<defaultGoal>install</defaultGoal>
2332
<pluginManagement>
2433
<plugins>
2534
<plugin>
2635
<groupId>org.apache.maven.plugins</groupId>
2736
<artifactId>maven-compiler-plugin</artifactId>
28-
<version>3.5.1</version>
37+
<version>${maven-compiler-plugin.version}</version>
2938
<configuration>
3039
<source>1.8</source>
3140
<target>1.8</target>
@@ -34,7 +43,7 @@
3443
<plugin>
3544
<groupId>org.codehaus.mojo</groupId>
3645
<artifactId>exec-maven-plugin</artifactId>
37-
<version>1.5.0</version>
46+
<version>${exec-maven-plugin.version}</version>
3847
</plugin>
3948
</plugins>
4049
</pluginManagement>

0 commit comments

Comments
 (0)