You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by dl...@apache.org on 2006/12/05 01:05:25 UTC

svn commit: r482419 - /portals/wsrp4j/trunk/pom.xml

Author: dlouzan
Date: Mon Dec  4 16:05:24 2006
New Revision: 482419

URL: http://svn.apache.org/viewvc?view=rev&rev=482419
Log:
Modified buildcycle for ensuring Java 1.4 compatibility

Modified:
    portals/wsrp4j/trunk/pom.xml

Modified: portals/wsrp4j/trunk/pom.xml
URL: http://svn.apache.org/viewvc/portals/wsrp4j/trunk/pom.xml?view=diff&rev=482419&r1=482418&r2=482419
==============================================================================
--- portals/wsrp4j/trunk/pom.xml (original)
+++ portals/wsrp4j/trunk/pom.xml Mon Dec  4 16:05:24 2006
@@ -200,7 +200,6 @@
     <servlet-api.version>2.3</servlet-api.version>
     <jstl.version>1.0.6</jstl.version>
     <wsdl4j.version>1.5.1</wsdl4j.version>
-    <xerces.version>2.7.1</xerces.version>
     <xml-apis.version>1.0.b2</xml-apis.version>
   </properties>
   <modules>
@@ -213,4 +212,17 @@
     <module>producer</module>
     <module>testportlet</module>
   </modules>
+  <build>
+    <plugins>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-compiler-plugin</artifactId>
+            <configuration>
+                <!-- Force 1.4 code -->
+                <source>1.4</source>
+                <target>1.4</target>
+            </configuration>
+        </plugin>
+    </plugins>
+  </build>
 </project>