Skip to content

Commit d70e47e

Browse files
committed
Upgraded maven-compile-plugin for upcomin maven 4.*
1 parent 63d5fe0 commit d70e47e

File tree

8 files changed

+260
-251
lines changed

8 files changed

+260
-251
lines changed

apps/milton-mini-server/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<plugin>
4343
<groupId>org.apache.maven.plugins</groupId>
4444
<artifactId>maven-compiler-plugin</artifactId>
45-
<version>2.3.2</version>
45+
<version>3.11.0</version>
4646
<configuration>
4747
<source>1.8</source>
4848
<target>1.8</target>
@@ -147,7 +147,6 @@
147147
</dependency>
148148

149149

150-
151150
<dependency>
152151
<groupId>net.sf.json-lib</groupId>
153152
<artifactId>json-lib</artifactId>

examples/milton-ref/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<groupId>io.milton</groupId>
56
<artifactId>milton-ref</artifactId>
@@ -30,7 +31,7 @@
3031
<plugin>
3132
<groupId>org.apache.maven.plugins</groupId>
3233
<artifactId>maven-compiler-plugin</artifactId>
33-
<version>2.3.2</version>
34+
<version>3.11.0</version>
3435
<configuration>
3536
<source>1.8</source>
3637
<target>1.8</target>

external/cardme/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<groupId>io.milton</groupId>
56
<artifactId>cardme</artifactId>
@@ -20,6 +21,7 @@
2021
<plugin>
2122
<groupId>org.apache.maven.plugins</groupId>
2223
<artifactId>maven-compiler-plugin</artifactId>
24+
<version>3.11.0</version>
2325
<configuration>
2426
<source>1.6</source>
2527
<target>1.6</target>

milton-api/pom.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
~ limitations under the License.
1717
-->
1818

19-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
19+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2021
<modelVersion>4.0.0</modelVersion>
2122
<parent>
2223
<groupId>io.milton</groupId>
@@ -40,7 +41,7 @@
4041
<plugin>
4142
<groupId>org.apache.maven.plugins</groupId>
4243
<artifactId>maven-compiler-plugin</artifactId>
43-
<version>2.3.2</version>
44+
<version>3.11.0</version>
4445
<configuration>
4546
<source>1.8</source>
4647
<target>1.8</target>
@@ -49,11 +50,11 @@
4950
</plugins>
5051
</build>
5152
<dependencies>
52-
<dependency>
53-
<groupId>org.jdom</groupId>
54-
<artifactId>jdom2</artifactId>
55-
<version>2.0.6.1</version>
56-
</dependency>
53+
<dependency>
54+
<groupId>org.jdom</groupId>
55+
<artifactId>jdom2</artifactId>
56+
<version>2.0.6.1</version>
57+
</dependency>
5758
<dependency>
5859
<groupId>commons-codec</groupId>
5960
<artifactId>commons-codec</artifactId>

milton-client/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<parent>
56
<groupId>io.milton</groupId>
@@ -23,7 +24,7 @@
2324
<plugin>
2425
<groupId>org.apache.maven.plugins</groupId>
2526
<artifactId>maven-compiler-plugin</artifactId>
26-
<version>2.3.2</version>
27+
<version>3.11.0</version>
2728
<configuration>
2829
<source>1.8</source>
2930
<target>1.8</target>

0 commit comments

Comments
 (0)