You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/06/18 11:45:44 UTC

svn commit: r1494086 - /commons/sandbox/commons-gpg-plugin/trunk/pom.xml

Author: sebb
Date: Tue Jun 18 09:45:43 2013
New Revision: 1494086

URL: http://svn.apache.org/r1494086
Log:
No need to configure the compiler if we use the correct property names - doh!

Modified:
    commons/sandbox/commons-gpg-plugin/trunk/pom.xml

Modified: commons/sandbox/commons-gpg-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/commons-gpg-plugin/trunk/pom.xml?rev=1494086&r1=1494085&r2=1494086&view=diff
==============================================================================
--- commons/sandbox/commons-gpg-plugin/trunk/pom.xml (original)
+++ commons/sandbox/commons-gpg-plugin/trunk/pom.xml Tue Jun 18 09:45:43 2013
@@ -27,8 +27,9 @@ This is intended as a temporary measure 
    <properties>
     <mavenVersion>2.2.1</mavenVersion>
     <mavenPluginPluginVersion>3.2</mavenPluginPluginVersion>
-    <maven.compile.source>1.5</maven.compile.source>
-    <maven.compile.target>1.5</maven.compile.target>
+    <maven.compiler.source>1.5</maven.compiler.source>
+    <maven.compiler.target>1.5</maven.compiler.target>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
 
   <dependencies>
@@ -108,21 +109,6 @@ This is intended as a temporary measure 
             <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
           </configuration>
         </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-compiler-plugin</artifactId>
-          <version>3.1</version>
-          <configuration>
-            <source>${maven.compile.source}</source>
-            <target>${maven.compile.target}</target>
-            <encoding>${commons.encoding}</encoding>
-            <!-- 
-            <fork>${commons.compiler.fork}</fork>
-            <compilerVersion>${commons.compiler.compilerVersion}</compilerVersion>
-            <executable>${commons.compiler.javac}</executable>
-             -->
-          </configuration>
-        </plugin>
       </plugins>
     </pluginManagement>