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 2018/01/05 20:14:05 UTC

svn commit: r1820349 - /axis/axis2/java/core/branches/schema-validation/modules/adb-tests/pom.xml

Author: veithen
Date: Fri Jan  5 20:14:05 2018
New Revision: 1820349

URL: http://svn.apache.org/viewvc?rev=1820349&view=rev
Log:
Enable schema validation in adb-tests.

Modified:
    axis/axis2/java/core/branches/schema-validation/modules/adb-tests/pom.xml

Modified: axis/axis2/java/core/branches/schema-validation/modules/adb-tests/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/schema-validation/modules/adb-tests/pom.xml?rev=1820349&r1=1820348&r2=1820349&view=diff
==============================================================================
--- axis/axis2/java/core/branches/schema-validation/modules/adb-tests/pom.xml (original)
+++ axis/axis2/java/core/branches/schema-validation/modules/adb-tests/pom.xml Fri Jan  5 20:14:05 2018
@@ -78,6 +78,13 @@
             <artifactId>mockito-core</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>schema-validation</artifactId>
+            <version>${project.version}</version>
+            <type>mar</type>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>
@@ -415,7 +422,11 @@
                     </execution>
                 </executions>
                 <configuration>
-                    <generatedAxis2xml/>
+                    <generatedAxis2xml>
+                        <modules>
+                            <module>schema-validation</module>
+                        </modules>
+                    </generatedAxis2xml>
                 </configuration>
             </plugin>
             <plugin>