Skip to content
This repository was archived by the owner on May 24, 2022. It is now read-only.

Commit a89e5de

Browse files
author
Thomas Gängler
committed
upgrade to java 8
1 parent 1d6cffc commit a89e5de

File tree

1 file changed

+52
-10
lines changed

1 file changed

+52
-10
lines changed

pom.xml

Lines changed: 52 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,53 @@
2727
<url>http://dswarm.org/</url>
2828
<name>d:swarm - Graph Model</name>
2929

30+
<prerequisites>
31+
<maven>3.0.4</maven>
32+
</prerequisites>
33+
3034
<properties>
3135
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32-
<java.source.version>1.7</java.source.version>
33-
<java.target.version>1.7</java.target.version>
34-
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
35-
<maven-assembly-plugin.version>2.4</maven-assembly-plugin.version>
36-
<maven-resources-plugin.version>2.6</maven-resources-plugin.version>
37-
<maven-install-plugin.version>2.5.1</maven-install-plugin.version>
38-
<maven-surefire-plugin.version>2.16</maven-surefire-plugin.version>
39-
<maven-clean-plugin.version>2.5</maven-clean-plugin.version>
40-
<maven-release-plugin.version>2.4.2</maven-release-plugin.version>
36+
<java.source.version>1.8</java.source.version>
37+
<java.target.version>1.8</java.target.version>
38+
<maven-compiler-plugin.version>3.2</maven-compiler-plugin.version>
39+
<maven-assembly-plugin.version>2.5.3</maven-assembly-plugin.version>
40+
<maven-resources-plugin.version>2.7</maven-resources-plugin.version>
41+
<maven-install-plugin.version>2.5.2</maven-install-plugin.version>
42+
<maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version>
43+
<maven-clean-plugin.version>2.6.1</maven-clean-plugin.version>
44+
<maven-release-plugin.version>2.5.1</maven-release-plugin.version>
45+
<version.maven.plugin.deploy>2.8.2</version.maven.plugin.deploy>
46+
<version.maven.plugin.jar>2.6</version.maven.plugin.jar>
47+
<version.maven.plugin.site>3.4</version.maven.plugin.site>
48+
<version.maven.plugin.version>2.1</version.maven.plugin.version>
49+
<version.maven.plugin.license>2.7</version.maven.plugin.license>
4150
</properties>
4251

4352
<build>
4453
<plugins>
54+
<plugin>
55+
<groupId>org.codehaus.mojo</groupId>
56+
<artifactId>versions-maven-plugin</artifactId>
57+
<version>${version.maven.plugin.version}</version>
58+
<configuration>
59+
<allowSnapshots>false</allowSnapshots>
60+
</configuration>
61+
</plugin>
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-deploy-plugin</artifactId>
65+
<version>${version.maven.plugin.deploy}</version>
66+
</plugin>
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-site-plugin</artifactId>
70+
<version>${version.maven.plugin.site}</version>
71+
</plugin>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-jar-plugin</artifactId>
75+
<version>${version.maven.plugin.jar}</version>
76+
</plugin>
4577
<plugin>
4678
<groupId>org.apache.maven.plugins</groupId>
4779
<artifactId>maven-compiler-plugin</artifactId>
@@ -106,7 +138,7 @@
106138
<plugin>
107139
<groupId>com.mycila</groupId>
108140
<artifactId>license-maven-plugin</artifactId>
109-
<version>2.6</version>
141+
<version>${version.maven.plugin.license}</version>
110142
<configuration>
111143
<header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header>
112144
<properties>
@@ -146,6 +178,16 @@
146178
</testResources>
147179
</build>
148180

181+
<reporting>
182+
<plugins>
183+
<plugin>
184+
<groupId>org.codehaus.mojo</groupId>
185+
<artifactId>versions-maven-plugin</artifactId>
186+
<version>${version.maven.plugin.version}</version>
187+
</plugin>
188+
</plugins>
189+
</reporting>
190+
149191
<distributionManagement>
150192
<repository>
151193
<id>deployment</id>

0 commit comments

Comments
 (0)