Author: brett
Date: Wed Jan  3 20:23:06 2007
New Revision: 492405

URL: http://svn.apache.org/viewvc?view=rev&rev=492405
Log:
compilation fixes

Modified:
    maven/surefire/trunk/maven-surefire-report-plugin/pom.xml

Modified: maven/surefire/trunk/maven-surefire-report-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/surefire/trunk/maven-surefire-report-plugin/pom.xml?view=diff&rev=492405&r1=492404&r2=492405
==============================================================================
--- maven/surefire/trunk/maven-surefire-report-plugin/pom.xml (original)
+++ maven/surefire/trunk/maven-surefire-report-plugin/pom.xml Wed Jan  3 
20:23:06 2007
@@ -38,7 +38,7 @@
       <version>2.0</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.maven</groupId>
+      <groupId>org.apache.maven.shared</groupId>
       <artifactId>maven-plugin-testing-harness</artifactId>
       <scope>test</scope>
       <version>1.0-beta-1</version>
@@ -46,16 +46,22 @@
   </dependencies>
 
   <profiles>
-    <!-- use preinstalled JDK 1.3 to build and test -->
+    <!-- Force JDK 1.4 for this one, plugins can never be built on 1.3 -->
     <profile>
       <id>jdk1.3</id>
-      <dependencies>
-        <dependency>
-          <groupId>xerces</groupId>
-          <artifactId>xmlParserAPIs</artifactId>
-          <version>2.6.2</version>
-        </dependency>
-      </dependencies>
+      <build>
+        <pluginManagement>
+          <plugins>
+            <plugin>
+              <artifactId>maven-compiler-plugin</artifactId>
+              <configuration>
+                <fork>false</fork>
+                <compilerVersion>1.4</compilerVersion>
+              </configuration>
+            </plugin>
+          </plugins>
+        </pluginManagement>
+      </build>
     </profile>
   </profiles>
 </project>


Reply via email to