You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jg...@apache.org on 2012/03/05 23:39:56 UTC

svn commit: r1297261 - /ant/core/trunk/src/etc/poms/pom.xml

Author: jglick
Date: Mon Mar  5 22:39:55 2012
New Revision: 1297261

URL: http://svn.apache.org/viewvc?rev=1297261&view=rev
Log:
Fixing most Maven warnings.

Modified:
    ant/core/trunk/src/etc/poms/pom.xml

Modified: ant/core/trunk/src/etc/poms/pom.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/etc/poms/pom.xml?rev=1297261&r1=1297260&r2=1297261&view=diff
==============================================================================
--- ant/core/trunk/src/etc/poms/pom.xml (original)
+++ ant/core/trunk/src/etc/poms/pom.xml Mon Mar  5 22:39:55 2012
@@ -116,5 +116,32 @@ xsi:schemaLocation="http://maven.apache.
     <testSourceDirectory>../../../src/testcases</testSourceDirectory>
     <outputDirectory>../../../target/classes</outputDirectory>
     <testOutputDirectory>../../../target/testcases</testOutputDirectory>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-compiler-plugin</artifactId>
+            <version>2.3.2</version>
+        </plugin>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jar-plugin</artifactId>
+            <version>2.4</version>
+        </plugin>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <version>2.12</version>
+        </plugin>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-report-plugin</artifactId>
+            <version>2.12</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
 </project>