Author: saminda Date: Tue Jun 5 23:46:11 2007 New Revision: 544743 URL: http://svn.apache.org/viewvc?view=rev&rev=544743 Log: Jaxbri is JDK 1.5 specific. Some classes are using generics. Thus, the inherited compiler wouldn't work with source being 1.4. Changed the source to be 1.5 and overrided the inherited compiler
Modified: webservices/axis2/trunk/java/modules/jaxbri/pom.xml Modified: webservices/axis2/trunk/java/modules/jaxbri/pom.xml URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxbri/pom.xml?view=diff&rev=544743&r1=544742&r2=544743 ============================================================================== --- webservices/axis2/trunk/java/modules/jaxbri/pom.xml (original) +++ webservices/axis2/trunk/java/modules/jaxbri/pom.xml Tue Jun 5 23:46:11 2007 @@ -61,6 +61,17 @@ <exclude>**/*.java</exclude> </excludes> </resource> - </resources> + </resources> + <plugins> + <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> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]