Author: veithen
Date: Sun Jan 6 23:04:22 2019
New Revision: 1850605
URL: http://svn.apache.org/viewvc?rev=1850605&view=rev
Log:
Use alta-maven-plugin to build the boot classpath for axis-rt-core.
Modified:
axis/axis1/java/trunk/axis-rt-core/pom.xml
axis/axis1/java/trunk/pom.xml
Modified: axis/axis1/java/trunk/axis-rt-core/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-core/pom.xml?rev=1850605&r1=1850604&r2=1850605&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-rt-core/pom.xml (original)
+++ axis/axis1/java/trunk/axis-rt-core/pom.xml Sun Jan 6 23:04:22 2019
@@ -127,28 +127,28 @@
</executions>
</plugin>
<plugin>
- <artifactId>maven-dependency-plugin</artifactId>
+ <groupId>com.github.veithen.alta</groupId>
+ <artifactId>alta-maven-plugin</artifactId>
<executions>
<execution>
- <phase>generate-resources</phase>
<goals>
- <goal>copy</goal>
+ <goal>generate-properties</goal>
</goals>
<configuration>
- <artifactItems>
- <artifactItem>
+ <name>compile.bootclasspath</name>
+ <value>%file%</value>
+ <separator>${path.separator}</separator>
+ <artifacts>
+ <artifact>
<groupId>xerces</groupId>
<artifactId>xmlParserAPIs</artifactId>
- </artifactItem>
- <artifactItem>
- <groupId>${project.groupId}</groupId>
+ </artifact>
+ <artifact>
+ <groupId>org.apache.axis</groupId>
<artifactId>axis-saaj</artifactId>
<version>${project.version}</version>
- </artifactItem>
- </artifactItems>
- <overWrite>true</overWrite>
-
<outputDirectory>${project.build.directory}/endorsed</outputDirectory>
- <stripVersion>true</stripVersion>
+ </artifact>
+ </artifacts>
</configuration>
</execution>
</executions>
@@ -158,7 +158,7 @@
<configuration>
<compilerArgument>
<!-- Necessary because we only support DOM 2 and SAAJ
1.2 -->
-
-Xbootclasspath/p:${project.build.directory}/endorsed/xmlParserAPIs.jar${path.separator}${project.build.directory}/endorsed/axis-saaj.jar
+ -Xbootclasspath/p:${compile.bootclasspath}
</compilerArgument>
</configuration>
</plugin>
Modified: axis/axis1/java/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1850605&r1=1850604&r2=1850605&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Sun Jan 6 23:04:22 2019
@@ -286,6 +286,11 @@
<artifactId>filecheck-maven-plugin</artifactId>
<version>0.1</version>
</plugin>
+ <plugin>
+ <groupId>com.github.veithen.alta</groupId>
+ <artifactId>alta-maven-plugin</artifactId>
+ <version>0.6.2</version>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>