Author: indika Date: Tue Jul 8 08:07:49 2008 New Revision: 18988 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=18988
Log: fix complie error Modified: trunk/esb/java/pom.xml Modified: trunk/esb/java/pom.xml URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/pom.xml?rev=18988&r1=18987&r2=18988&view=diff ============================================================================== --- trunk/esb/java/pom.xml (original) +++ trunk/esb/java/pom.xml Tue Jul 8 08:07:49 2008 @@ -50,7 +50,8 @@ <unsubscribe>[EMAIL PROTECTED]</unsubscribe> <archive>http://wso2.org/mailarchive/esb-java-dev/</archive> <otherArchives> - <otherArchive>http://wso2.markmail.org/search/list:org.wso2.esb-java-dev</otherArchive> + <otherArchive>http://wso2.markmail.org/search/list:org.wso2.esb-java-dev + </otherArchive> </otherArchives> </mailingList> <mailingList> @@ -59,7 +60,8 @@ <unsubscribe>[EMAIL PROTECTED]</unsubscribe> <archive>http://wso2.org/mailarchive/esb-java-user/</archive> <otherArchives> - <otherArchive>http://wso2.markmail.org/search/list:org.wso2.esb-java-user</otherArchive> + <otherArchive>http://wso2.markmail.org/search/list:org.wso2.esb-java-user + </otherArchive> </otherArchives> </mailingList> </mailingLists> @@ -306,6 +308,16 @@ <groupId>org.apache.axis2</groupId> <artifactId>axis2-kernel</artifactId> <version>${axis2.version}</version> + <exclusions> + <exclusion> + <groupId>org.igniterealtime</groupId> + <artifactId>smack</artifactId> + </exclusion> + <exclusion> + <groupId>org.igniterealtime</groupId> + <artifactId>smackx</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.axis2</groupId> @@ -316,6 +328,16 @@ <groupId>org.apache.axis2</groupId> <artifactId>axis2-java2wsdl</artifactId> <version>${axis2.version}</version> + <exclusions> + <exclusion> + <groupId>org.igniterealtime</groupId> + <artifactId>smack</artifactId> + </exclusion> + <exclusion> + <groupId>org.igniterealtime</groupId> + <artifactId>smackx</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.axis2</groupId> @@ -419,19 +441,19 @@ <exclusion> <groupId>org.mortbay.jetty</groupId> <artifactId>servlet-api</artifactId> - </exclusion> + </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> - </exclusion> - <exclusion> + </exclusion> + <exclusion> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> - </exclusion> - <exclusion> + </exclusion> + <exclusion> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-javamail_1.4_spec</artifactId> - </exclusion> + </exclusion> <exclusion> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-activation_1.1_spec</artifactId> @@ -680,7 +702,7 @@ <groupId>commons-logging</groupId> <artifactId>commons-logging-api</artifactId> </exclusion> - </exclusions> + </exclusions> </dependency> <dependency> <groupId>tomcat</groupId> @@ -712,7 +734,7 @@ <groupId>commons-logging</groupId> <artifactId>commons-logging-api</artifactId> </exclusion> - </exclusions> + </exclusions> </dependency> <dependency> <groupId>tomcat</groupId> @@ -740,7 +762,7 @@ <exclusion> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> - </exclusion> + </exclusion> <exclusion> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> @@ -808,17 +830,17 @@ </plugin> <!--<plugin>--> - <!--<groupId>org.apache.maven.plugins</groupId>--> - <!--<artifactId>maven-site-plugin</artifactId>--> - <!--<version>2.0-beta-5</version>--> - <!--<executions>--> - <!--<execution>--> - <!--<phase>install</phase>--> - <!--<goals>--> - <!--<goal>site</goal>--> - <!--</goals>--> - <!--</execution>--> - <!--</executions>--> + <!--<groupId>org.apache.maven.plugins</groupId>--> + <!--<artifactId>maven-site-plugin</artifactId>--> + <!--<version>2.0-beta-5</version>--> + <!--<executions>--> + <!--<execution>--> + <!--<phase>install</phase>--> + <!--<goals>--> + <!--<goal>site</goal>--> + <!--</goals>--> + <!--</execution>--> + <!--</executions>--> <!--</plugin>--> </plugins> @@ -872,7 +894,7 @@ <slf4j.version>1.0.1</slf4j.version> <!-- Synapse and related components --> - <synapse.version>1.3-SNAPSHOT</synapse.version> + <synapse.version>1.3-SNAPSHOT</synapse.version> <httpcore.nio.version>4.0-beta1</httpcore.nio.version> <smack.version>2.2.1</smack.version> _______________________________________________ Esb-java-dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
