You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2016/02/20 20:17:43 UTC

svn commit: r1731441 - in /axis/axis2/java/core/trunk/modules/jaxws: build.xml pom.xml

Author: veithen
Date: Sat Feb 20 19:17:43 2016
New Revision: 1731441

URL: http://svn.apache.org/viewvc?rev=1731441&view=rev
Log:
Use axis2-maven-repo-plugin to build the repository in the jaxws module and create a formal dependency to the addressing module.

Removed:
    axis/axis2/java/core/trunk/modules/jaxws/build.xml
Modified:
    axis/axis2/java/core/trunk/modules/jaxws/pom.xml

Modified: axis/axis2/java/core/trunk/modules/jaxws/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/jaxws/pom.xml?rev=1731441&r1=1731440&r2=1731441&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/jaxws/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/jaxws/pom.xml Sat Feb 20 19:17:43 2016
@@ -130,6 +130,13 @@
             <version>1.10.19</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>addressing</artifactId>
+            <version>${project.version}</version>
+            <type>mar</type>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <url>http://axis.apache.org/axis2/java/core/</url>
     <scm>
@@ -312,8 +319,6 @@
                                         <include name="**/axis2.xml" />
                                     </fileset>
                                 </copy>
-                                <property name="addressing_version" value="${project.version}" />
-                                <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="." target="build-repo" />
                             </tasks>
                         </configuration>
                         <goals>
@@ -322,6 +327,22 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.axis2</groupId>
+                <artifactId>axis2-repo-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>create-test-repository</goal>
+                        </goals>
+                        <configuration>
+                            <axis2xml>../kernel/conf/axis2.xml</axis2xml>
+                            <configurationDirectory>conf</configurationDirectory>
+                            <outputDirectory>${project.build.directory}/repository</outputDirectory>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>build-helper-maven-plugin</artifactId>