You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2015/06/24 14:58:13 UTC

[07/50] [abbrv] wicket git commit: Cleanup of Maven's compiler settings

Cleanup of Maven's compiler settings


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/654a3f7b
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/654a3f7b
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/654a3f7b

Branch: refs/heads/master
Commit: 654a3f7b5e7373377c42ae275efc1a65bf429321
Parents: 834cf73
Author: Martijn Dashorst <da...@apache.org>
Authored: Fri Jun 12 13:51:29 2015 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Wed Jun 24 14:56:32 2015 +0300

----------------------------------------------------------------------
 pom.xml | 22 +++++++++-------------
 1 file changed, 9 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/654a3f7b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a89314e..8537a63 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
 	<parent>
 		<groupId>org.apache</groupId>
 		<artifactId>apache</artifactId>
-		<version>14</version>
+		<version>17</version>
 	</parent>
 	<groupId>org.apache.wicket</groupId>
 	<artifactId>wicket-parent</artifactId>
@@ -118,9 +118,14 @@
 		<!-- Encoding -->
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-		
+
+		<maven.compiler.optimize>true</maven.compiler.optimize>
+		<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
+		<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
+		<maven.compiler.source>1.7</maven.compiler.source>
+		<maven.compiler.target>1.7</maven.compiler.target>
+
 		<!-- Project Versions -->
-		<mvn.build.java.version>1.7</mvn.build.java.version>
 		<jacoco.version>0.7.4.201502262128</jacoco.version>
 		<jetty.version>8.1.17.v20150415</jetty.version>
 		<jetty9.version>9.0.7.v20131107</jetty9.version>
@@ -682,19 +687,10 @@
 					<version>2.3</version>
 				</plugin>
 				<plugin>
-					<inherited>true</inherited>
 					<groupId>org.apache.maven.plugins</groupId>
 					<artifactId>maven-compiler-plugin</artifactId>
 					<version>3.3</version>
-					<configuration>
-						<source>${mvn.build.java.version}</source>
-						<target>${mvn.build.java.version}</target>
-						<compilerVersion>${mvn.build.java.version}</compilerVersion>
-						<encoding>${project.build.sourceEncoding}</encoding>
-						<showWarnings>true</showWarnings>
-						<optimize>true</optimize>
-						<debug>true</debug>
-					</configuration>
+					<inherited>true</inherited>
 				</plugin>
 				<plugin>
 					<groupId>org.apache.maven.plugins</groupId>