You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ol...@apache.org on 2014/04/23 01:36:04 UTC

svn commit: r1589307 - /archiva/parent/pom.xml

Author: olamy
Date: Tue Apr 22 23:36:04 2014
New Revision: 1589307

URL: http://svn.apache.org/r1589307
Log:
configurable

Modified:
    archiva/parent/pom.xml

Modified: archiva/parent/pom.xml
URL: http://svn.apache.org/viewvc/archiva/parent/pom.xml?rev=1589307&r1=1589306&r2=1589307&view=diff
==============================================================================
--- archiva/parent/pom.xml (original)
+++ archiva/parent/pom.xml Tue Apr 22 23:36:04 2014
@@ -88,6 +88,9 @@
     <enunciate.version>1.28</enunciate.version>
     <enunciate.debug>false</enunciate.debug>
 
+    <compiler.source>1.7</compiler.source>
+    <compiler.target>1.7</compiler.target>
+
   </properties>
 
 
@@ -633,8 +636,8 @@
           <artifactId>maven-compiler-plugin</artifactId>
           <version>3.1</version>
           <configuration>
-            <source>1.7</source>
-            <target>1.7</target>
+            <source>${compiler.source}</source>
+            <target>${compiler.target}</target>
           </configuration>
         </plugin>
         <plugin>