You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by gn...@apache.org on 2006/05/02 01:28:47 UTC

svn commit: r398732 - /incubator/ode/scratch/ode/bpel-jaxb/pom.xml

Author: gnodet
Date: Mon May  1 16:28:46 2006
New Revision: 398732

URL: http://svn.apache.org/viewcvs?rev=398732&view=rev
Log:
Use java5 so that the generated code compiles

Modified:
    incubator/ode/scratch/ode/bpel-jaxb/pom.xml

Modified: incubator/ode/scratch/ode/bpel-jaxb/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/ode/scratch/ode/bpel-jaxb/pom.xml?rev=398732&r1=398731&r2=398732&view=diff
==============================================================================
--- incubator/ode/scratch/ode/bpel-jaxb/pom.xml (original)
+++ incubator/ode/scratch/ode/bpel-jaxb/pom.xml Mon May  1 16:28:46 2006
@@ -26,6 +26,14 @@
                     <packageName>org.apache.ode.bom</packageName>
                </configuration>
             </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <source>1.5</source>
+            <target>1.5</target>
+          </configuration>
+        </plugin>
     </plugins>
   </build>
 </project>