Author: aheritier
Date: Sun Aug  3 15:13:02 2008
New Revision: 682226

URL: http://svn.apache.org/viewvc?rev=682226&view=rev
Log:
Fix build by :
- Downgrading to maven-plugins 10
- Re-adding compiler plugin 2.0.2 with Java 1.4 settings
- Setting version of surefire 2.3.1
- Downgrading plexus-utils from 1.5.3 to 1.4.5

Modified:
    maven/plugins/trunk/maven-eclipse-plugin/pom.xml

Modified: maven/plugins/trunk/maven-eclipse-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/pom.xml?rev=682226&r1=682225&r2=682226&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/pom.xml Sun Aug  3 15:13:02 2008
@@ -21,7 +21,7 @@
   <parent>
     <artifactId>maven-plugins</artifactId>
     <groupId>org.apache.maven.plugins</groupId>
-    <version>12-SNAPSHOT</version>
+    <version>10</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.maven.plugins</groupId>
@@ -44,7 +44,16 @@
   <build>
     <plugins>
       <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0.2</version>
+        <configuration>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+      <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.3.1</version>
         <configuration>
           <excludes>
             <exclude>**/Abstract*TestCase.java</exclude>
@@ -126,7 +135,7 @@
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
-      <version>1.5.3</version>
+      <version>1.4.5</version>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>


Reply via email to