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:14 UTC

svn commit: r1494085 - /commons/sandbox/commons-digest-plugin/trunk/pom.xml

Author: sebb
Date: Tue Jun 18 09:45:14 2013
New Revision: 1494085

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

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

Modified: commons/sandbox/commons-digest-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/commons-digest-plugin/trunk/pom.xml?rev=1494085&r1=1494084&r2=1494085&view=diff
==============================================================================
--- commons/sandbox/commons-digest-plugin/trunk/pom.xml (original)
+++ commons/sandbox/commons-digest-plugin/trunk/pom.xml Tue Jun 18 09:45:14 2013
@@ -26,8 +26,9 @@ Apache Commons Digest Maven plugin provi
    <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>
@@ -78,16 +79,6 @@ Apache Commons Digest Maven plugin provi
           </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>
-          </configuration>
-        </plugin>
-        <plugin>
           <groupId>org.codehaus.plexus</groupId>
           <artifactId>plexus-component-metadata</artifactId>
           <version>1.5.5</version>