Author: veithen Date: Tue Jan 31 23:29:00 2012 New Revision: 1238860 URL: http://svn.apache.org/viewvc?rev=1238860&view=rev Log: Mavenized TestMiscSample.
Added: axis/axis1/java/trunk/samples/misc-sample/ axis/axis1/java/trunk/samples/misc-sample/pom.xml (with props) axis/axis1/java/trunk/samples/misc-sample/src/ axis/axis1/java/trunk/samples/misc-sample/src/main/ axis/axis1/java/trunk/samples/misc-sample/src/main/java/ axis/axis1/java/trunk/samples/misc-sample/src/main/java/samples/ axis/axis1/java/trunk/samples/misc-sample/src/main/java/samples/misc/ axis/axis1/java/trunk/samples/misc-sample/src/main/java/samples/misc/TestClient.java - copied unchanged from r1238067, axis/axis1/java/trunk/distribution/src/main/files/samples/misc/TestClient.java axis/axis1/java/trunk/samples/misc-sample/src/test/ axis/axis1/java/trunk/samples/misc-sample/src/test/java/ axis/axis1/java/trunk/samples/misc-sample/src/test/java/test/ axis/axis1/java/trunk/samples/misc-sample/src/test/java/test/functional/ axis/axis1/java/trunk/samples/misc-sample/src/test/java/test/functional/TestMiscSample.java - copied unchanged from r1238067, axis/axis1/java/trunk/test/functional/TestMiscSample.java Removed: axis/axis1/java/trunk/distribution/src/main/files/samples/misc/TestClient.java axis/axis1/java/trunk/test/functional/TestMiscSample.java Modified: axis/axis1/java/trunk/distribution/src/main/assembly/bin.xml axis/axis1/java/trunk/samples/pom.xml Modified: axis/axis1/java/trunk/distribution/src/main/assembly/bin.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/distribution/src/main/assembly/bin.xml?rev=1238860&r1=1238859&r2=1238860&view=diff ============================================================================== --- axis/axis1/java/trunk/distribution/src/main/assembly/bin.xml (original) +++ axis/axis1/java/trunk/distribution/src/main/assembly/bin.xml Tue Jan 31 23:29:00 2012 @@ -81,6 +81,10 @@ <outputDirectory>samples/message</outputDirectory> </fileSet> <fileSet> + <directory>../samples/misc-sample/src/main/java</directory> + <outputDirectory>/</outputDirectory> + </fileSet> + <fileSet> <directory>../samples/stock-sample/src/main/java</directory> <outputDirectory>/</outputDirectory> </fileSet> Added: axis/axis1/java/trunk/samples/misc-sample/pom.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/samples/misc-sample/pom.xml?rev=1238860&view=auto ============================================================================== --- axis/axis1/java/trunk/samples/misc-sample/pom.xml (added) +++ axis/axis1/java/trunk/samples/misc-sample/pom.xml Tue Jan 31 23:29:00 2012 @@ -0,0 +1,97 @@ +<?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>samples</artifactId> + <version>1.4.1-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <artifactId>misc-sample</artifactId> + <name>Misc Sample</name> + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>axis</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>axis-standalone-server</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <executions> + <execution> + <id>default-test</id> + <configuration> + <skip>true</skip> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>${project.groupId}</groupId> + <artifactId>axis-maven-plugin</artifactId> + <version>${project.version}</version> + <executions> + <execution> + <id>start-server</id> + <goals> + <goal>start-server</goal> + </goals> + </execution> + <execution> + <id>stop-server</id> + <goals> + <goal>stop-server</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <artifactId>maven-failsafe-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>integration-test</goal> + <goal>verify</goal> + </goals> + <configuration> + <includes> + <include>**/Test*.java</include> + </includes> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> Propchange: axis/axis1/java/trunk/samples/misc-sample/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Modified: axis/axis1/java/trunk/samples/pom.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/samples/pom.xml?rev=1238860&r1=1238859&r2=1238860&view=diff ============================================================================== --- axis/axis1/java/trunk/samples/pom.xml (original) +++ axis/axis1/java/trunk/samples/pom.xml Tue Jan 31 23:29:00 2012 @@ -38,6 +38,7 @@ <module>encoding-sample</module> <module>faults-sample</module> <module>message-sample</module> + <module>misc-sample</module> <module>stock-sample</module> </modules> </project>