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 2017/03/26 22:28:27 UTC

svn commit: r1788778 - in /axis/axis2/java/core/trunk/modules/transport/testkit: pom.xml src/main/resources/org/apache/axis2/transport/repo/modules/

Author: veithen
Date: Sun Mar 26 22:28:27 2017
New Revision: 1788778

URL: http://svn.apache.org/viewvc?rev=1788778&view=rev
Log:
Use axis2-repo-maven-plugin instead of maven-dependency-plugin.

Removed:
    axis/axis2/java/core/trunk/modules/transport/testkit/src/main/resources/org/apache/axis2/transport/repo/modules/
Modified:
    axis/axis2/java/core/trunk/modules/transport/testkit/pom.xml

Modified: axis/axis2/java/core/trunk/modules/transport/testkit/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/transport/testkit/pom.xml?rev=1788778&r1=1788777&r2=1788778&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/transport/testkit/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/transport/testkit/pom.xml Sun Mar 26 22:28:27 2017
@@ -153,29 +153,17 @@
         </resources>
         <plugins>
             <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <version>2.0</version>
+                <groupId>org.apache.axis2</groupId>
+                <artifactId>axis2-repo-maven-plugin</artifactId>
                 <executions>
                     <execution>
-                        <id>copy</id>
                         <phase>generate-resources</phase>
                         <goals>
-                            <goal>copy</goal>
+                            <goal>create-repository</goal>
                         </goals>
                         <configuration>
-                            <stripVersion>true</stripVersion>
-                            <artifactItems>
-                                <artifactItem>
-                                    <groupId>org.apache.axis2</groupId>
-                                    <artifactId>addressing</artifactId>
-                                    <version>${axis2.version}</version>
-                                    <type>mar</type>
-                                    <outputDirectory>
-                                        target/generated-resources/org/apache/axis2/transport/repo/modules
-                                    </outputDirectory>
-                                </artifactItem>
-                            </artifactItems>
+                            <outputDirectory>${project.build.directory}/generated-resources/org/apache/axis2/transport/repo</outputDirectory>
+                            <generateFileLists>true</generateFileLists>
                         </configuration>
                     </execution>
                 </executions>