You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2018/10/23 10:41:56 UTC

svn commit: r1844631 - in /webservices/axiom/trunk: pom.xml testing/axiom-testsuite/pom.xml

Author: veithen
Date: Tue Oct 23 10:41:56 2018
New Revision: 1844631

URL: http://svn.apache.org/viewvc?rev=1844631&view=rev
Log:
Replace maven-jaxb2-plugin.

Modified:
    webservices/axiom/trunk/pom.xml
    webservices/axiom/trunk/testing/axiom-testsuite/pom.xml

Modified: webservices/axiom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1844631&r1=1844630&r2=1844631&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Tue Oct 23 10:41:56 2018
@@ -755,9 +755,9 @@
                     <version>2.0.0</version>
                 </plugin>
                 <plugin>
-                    <groupId>org.jvnet.jaxb2.maven2</groupId>
-                    <artifactId>maven-jaxb2-plugin</artifactId>
-                    <version>0.14.0</version>
+                    <groupId>com.github.veithen.maven</groupId>
+                    <artifactId>xjc-maven-plugin</artifactId>
+                    <version>0.1</version>
                 </plugin>
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>

Modified: webservices/axiom/trunk/testing/axiom-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/testing/axiom-testsuite/pom.xml?rev=1844631&r1=1844630&r2=1844631&view=diff
==============================================================================
--- webservices/axiom/trunk/testing/axiom-testsuite/pom.xml (original)
+++ webservices/axiom/trunk/testing/axiom-testsuite/pom.xml Tue Oct 23 10:41:56 2018
@@ -141,15 +141,17 @@
                 </dependencies>
             </plugin>
             <plugin>
-                <groupId>org.jvnet.jaxb2.maven2</groupId>
-                <artifactId>maven-jaxb2-plugin</artifactId>
+                <groupId>com.github.veithen.maven</groupId>
+                <artifactId>xjc-maven-plugin</artifactId>
                 <executions>
                     <execution>
                         <goals>
-                            <goal>generate</goal>
+                            <goal>generate-sources</goal>
                         </goals>
                         <configuration>
-                            <schemaDirectory>src/main/schemas</schemaDirectory>
+                            <files>
+                                <file>src/main/schemas/identity.xsd</file>
+                            </files>
                         </configuration>
                     </execution>
                 </executions>