You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@empire-db.apache.org by fr...@apache.org on 2015/08/06 16:27:55 UTC

empire-db git commit: fix EMPIREDB-222 we now require jdk7

Repository: empire-db
Updated Branches:
  refs/heads/master 012a316f3 -> badc69e67


fix EMPIREDB-222 we now require jdk7


Project: http://git-wip-us.apache.org/repos/asf/empire-db/repo
Commit: http://git-wip-us.apache.org/repos/asf/empire-db/commit/badc69e6
Tree: http://git-wip-us.apache.org/repos/asf/empire-db/tree/badc69e6
Diff: http://git-wip-us.apache.org/repos/asf/empire-db/diff/badc69e6

Branch: refs/heads/master
Commit: badc69e67bd9639eee250182e273064b1132db92
Parents: 012a316
Author: Francis De Brabandere <fr...@apache.org>
Authored: Thu Aug 6 16:27:48 2015 +0200
Committer: Francis De Brabandere <fr...@apache.org>
Committed: Thu Aug 6 16:27:48 2015 +0200

----------------------------------------------------------------------
 pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/empire-db/blob/badc69e6/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index e14b0da..d3aeedc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,8 +44,8 @@
 	<properties>
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-		<maven.compile.source>1.6</maven.compile.source>
-		<maven.compile.target>1.6</maven.compile.target>
+		<maven.compile.source>1.7</maven.compile.source>
+		<maven.compile.target>1.7</maven.compile.target>
 		<disclaimer.dir>{project.basedir}</disclaimer.dir>
 	</properties>
 
@@ -132,7 +132,7 @@
 							</execution>
 						</executions>
 					</plugin>
-					<!-- enable enforcer for java 1.6 -->
+					<!-- enable enforcer for java 1.7 -->
 					<plugin>
 						<groupId>org.apache.maven.plugins</groupId>
 						<artifactId>maven-enforcer-plugin</artifactId>
@@ -534,7 +534,7 @@
 					<configuration>
 						<signature>
 							<groupId>org.codehaus.mojo.signature</groupId>
-							<artifactId>java15</artifactId>
+							<artifactId>java17</artifactId>
 							<version>1.0</version>
 						</signature>
 					</configuration>
@@ -621,7 +621,7 @@
 				<artifactId>maven-pmd-plugin</artifactId>
 				<version>3.1</version>
 				<configuration>
-					<targetJdk>1.5</targetJdk>
+					<targetJdk>1.7</targetJdk>
 				</configuration>
 			</plugin>
 			<!-- findbugs-maven-plugin -->