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 2011/09/14 00:23:06 UTC

svn commit: r1170368 - /commons/proper/chain/trunk/pom.xml

Author: sebb
Date: Tue Sep 13 22:23:06 2011
New Revision: 1170368

URL: http://svn.apache.org/viewvc?rev=1170368&view=rev
Log:
Remove Java 1.5 profile.
It was originally a profile to support Java 1.3, but 1.3 was accidentally changed to 1.5 in r1162332, as part of the move to Java 1.5 (global edit error).
There's no need to revert profile to 1.3 as we don't support that Java version any more, so just rm.

Modified:
    commons/proper/chain/trunk/pom.xml

Modified: commons/proper/chain/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/chain/trunk/pom.xml?rev=1170368&r1=1170367&r2=1170368&view=diff
==============================================================================
--- commons/proper/chain/trunk/pom.xml (original)
+++ commons/proper/chain/trunk/pom.xml Tue Sep 13 22:23:06 2011
@@ -241,36 +241,6 @@
         </dependency>
     </dependencies>
 
-    <profiles>
-        <!-- Profile for running the build using JDK 1.5 -->
-        <profile>
-            <id>java-1.5</id>
-            <dependencies>
-                <dependency>
-                    <groupId>xml-apis</groupId>
-                    <artifactId>xml-apis</artifactId>
-                    <version>2.0.2</version>
-                </dependency>
-                <dependency>
-                    <groupId>xerces</groupId>
-                    <artifactId>xercesImpl</artifactId>
-                    <version>2.2.1</version>
-                    <scope>test</scope>
-                </dependency>
-            </dependencies>
-            <build>
-                <plugins>
-                    <plugin>
-                        <artifactId>maven-surefire-plugin</artifactId>
-                        <configuration>
-                            <forkMode>always</forkMode>
-                        </configuration>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-
     <reporting>
         <plugins>