You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2006/06/21 19:43:19 UTC

svn commit: r416049 - /incubator/servicemix/trunk/servicemix-core/pom.xml

Author: gnodet
Date: Wed Jun 21 10:43:19 2006
New Revision: 416049

URL: http://svn.apache.org/viewvc?rev=416049&view=rev
Log:
Force jdk 1.4 for compilation

Modified:
    incubator/servicemix/trunk/servicemix-core/pom.xml

Modified: incubator/servicemix/trunk/servicemix-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-core/pom.xml?rev=416049&r1=416048&r2=416049&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-core/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-core/pom.xml Wed Jun 21 10:43:19 2006
@@ -299,6 +299,14 @@
     </testResources>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+      <plugin>
         <groupId>org.apache.xbean</groupId>
         <artifactId>maven-xbean-plugin</artifactId>
         <executions>
@@ -330,4 +338,4 @@
     </plugins>
   </build>
 
-</project>
\ No newline at end of file
+</project>