Author: veithen
Date: Tue Oct 2 18:35:44 2012
New Revision: 1393087
URL: http://svn.apache.org/viewvc?rev=1393087&view=rev
Log:
Preparing the migration of the SOAP 1.2 interoperability tests.
Added:
axis/axis1/java/trunk/interop/
axis/axis1/java/trunk/interop/pom.xml (with props)
axis/axis1/java/trunk/interop/src/
axis/axis1/java/trunk/interop/src/test/
axis/axis1/java/trunk/interop/src/test/java/
axis/axis1/java/trunk/interop/src/test/java/test/
axis/axis1/java/trunk/interop/src/test/java/test/wsdl/
axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/
axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/
axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/Soap12AddTestDocBindingImpl.java
- copied unchanged from r1392013,
axis/axis1/java/trunk/test/wsdl/soap12/additional/Soap12AddTestDocBindingImpl.java
axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/Soap12AddTestRpcBindingImpl.java
- copied unchanged from r1392013,
axis/axis1/java/trunk/test/wsdl/soap12/additional/Soap12AddTestRpcBindingImpl.java
axis/axis1/java/trunk/interop/src/test/java/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java
- copied unchanged from r1392013,
axis/axis1/java/trunk/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java
axis/axis1/java/trunk/interop/src/test/wsdl/
axis/axis1/java/trunk/interop/src/test/wsdl/soap12/
axis/axis1/java/trunk/interop/src/test/wsdl/soap12/additional/
axis/axis1/java/trunk/interop/src/test/wsdl/soap12/additional/soap12-add-test.wsdl
- copied unchanged from r1392013,
axis/axis1/java/trunk/test/wsdl/soap12/additional/soap12-add-test.wsdl
Removed:
axis/axis1/java/trunk/test/wsdl/soap12/additional/Soap12AddTestDocBindingImpl.java
axis/axis1/java/trunk/test/wsdl/soap12/additional/Soap12AddTestRpcBindingImpl.java
axis/axis1/java/trunk/test/wsdl/soap12/additional/WhiteMesaSoap12AddTestSvcTestCase.java
axis/axis1/java/trunk/test/wsdl/soap12/additional/soap12-add-test.wsdl
Added: axis/axis1/java/trunk/interop/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/interop/pom.xml?rev=1393087&view=auto
==============================================================================
--- axis/axis1/java/trunk/interop/pom.xml (added)
+++ axis/axis1/java/trunk/interop/pom.xml Tue Oct 2 18:35:44 2012
@@ -0,0 +1,87 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.axis</groupId>
+ <artifactId>axis-project</artifactId>
+ <version>1.4.1-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>interop</artifactId>
+ <name>Interoperability tests</name>
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>axis</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>maven-wsdl2java-plugin</artifactId>
+ <version>${project.version}</version>
+ <executions>
+ <execution>
+ <id>samples-echo</id>
+ <goals>
+ <goal>generate-test-sources</goal>
+ </goals>
+ <configuration>
+
<file>src/test/wsdl/soap12/additional/soap12-add-test.wsdl</file>
+ <generate>both</generate>
+ <mappings>
+ <mapping>
+
<namespace>http://whitemesa.net/wsdl/soap12-test</namespace>
+
<package>test.wsdl.soap12.additional</package>
+ </mapping>
+ <mapping>
+
<namespace>http://example.org/ts-tests/xsd</namespace>
+
<package>test.wsdl.soap12.additional.xsd</package>
+ </mapping>
+ </mappings>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ <skipDeploy>true</skipDeploy>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Propchange: axis/axis1/java/trunk/interop/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native