You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2013/08/15 13:48:05 UTC

svn commit: r1514240 - /maven/plugins/trunk/maven-compiler-plugin/src/it/error-prone-compiler/pom.xml

Author: olamy
Date: Thu Aug 15 11:48:04 2013
New Revision: 1514240

URL: http://svn.apache.org/r1514240
Log:
simplify pom as it is not anymore needed

Modified:
    maven/plugins/trunk/maven-compiler-plugin/src/it/error-prone-compiler/pom.xml

Modified: maven/plugins/trunk/maven-compiler-plugin/src/it/error-prone-compiler/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/it/error-prone-compiler/pom.xml?rev=1514240&r1=1514239&r2=1514240&view=diff
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/src/it/error-prone-compiler/pom.xml (original)
+++ maven/plugins/trunk/maven-compiler-plugin/src/it/error-prone-compiler/pom.xml Thu Aug 15 11:48:04 2013
@@ -46,9 +46,6 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <!--
-        <version>3.1</version>
-        -->
         <version>@project.version@</version>
         <configuration>
           <compilerId>javac-with-errorprone</compilerId>
@@ -59,12 +56,6 @@
             <groupId>org.codehaus.plexus</groupId>
             <artifactId>plexus-compiler-javac-errorprone</artifactId>
             <version>@plexusCompilerVersion@</version>
-            <exclusions>
-              <exclusion>
-                <groupId>openjdk</groupId>
-                <artifactId>tools</artifactId>
-              </exclusion>
-            </exclusions>
           </dependency>
           <dependency>
             <groupId>org.codehaus.plexus</groupId>
@@ -72,14 +63,6 @@
             <version>@plexusCompilerVersion@</version>
           </dependency>
 
-          <dependency>
-            <groupId>openjdk</groupId>
-            <artifactId>tools</artifactId>
-            <version>1.6</version>
-            <scope>system</scope>
-            <systemPath>${toolsjar}</systemPath>
-          </dependency>
-
         </dependencies>
       </plugin>
     </plugins>
@@ -108,19 +91,4 @@
     </repository>
   </repositories>
 
-  <profiles>
-    <profile>
-      <id>standardToolsJar-profile</id>
-      <activation>
-        <activeByDefault>true</activeByDefault>
-        <file>
-          <exists>${java.home}/../lib/tools.jar</exists>
-        </file>
-      </activation>
-      <properties>
-        <toolsjar>${java.home}/../lib/tools.jar</toolsjar>
-      </properties>
-    </profile>
-  </profiles>
-
 </project>