Author: sagara
Date: Sun Dec 6 12:42:08 2009
New Revision: 887674
URL: http://svn.apache.org/viewvc?rev=887674&view=rev
Log:
Interop test cases refactored as a Maven profile.
Modified:
webservices/woden/trunk/java/woden-ant/pom.xml
Modified: webservices/woden/trunk/java/woden-ant/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-ant/pom.xml?rev=887674&r1=887673&r2=887674&view=diff
==============================================================================
--- webservices/woden/trunk/java/woden-ant/pom.xml (original)
+++ webservices/woden/trunk/java/woden-ant/pom.xml Sun Dec 6 12:42:08 2009
@@ -82,48 +82,59 @@
</execution>
</executions>
</plugin>
- <!-- to run W3C testsuite and results are compared to W3C
baseline -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <phase>test</phase>
- <configuration>
- <tasks>
- <property name="compile_classpath"
refid="maven.compile.classpath"/>
- <property name="runtime_classpath"
refid="maven.runtime.classpath"/>
- <property name="test_classpath"
refid="maven.test.classpath"/>
- <ant
antfile="${basedir}/build.xml">
- <target name="getW3cWsdl20"/>
- <target name="main"/>
- </ant>
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
-
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-trax</artifactId>
- <version>${apache.ant.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-nodeps</artifactId>
- <version>${apache.ant.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </plugin>
+
</plugins>
</build>
+
+ <profiles>
+ <profile>
+ <!-- to run W3C testsuite and results are compared to W3C
baseline -->
+ <id>interop</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.3</version>
+ <executions>
+ <execution>
+ <phase>test</phase>
+ <configuration>
+ <tasks>
+ <property
name="compile_classpath" refid="maven.compile.classpath"/>
+ <property name="runtime_classpath"
refid="maven.runtime.classpath"/>
+ <property name="test_classpath"
refid="maven.test.classpath"/>
+ <ant
antfile="${basedir}/build.xml">
+ <target name="getW3cWsdl20"/>
+ <target
name="main"/>
+ </ant>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-trax</artifactId>
+ <version>${apache.ant.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>${apache.ant.version}</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
<dependencies>
<dependency>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]