blob: c22538bbdd941039f0b25e40d7cbaa0f541a37f5 [file] [log] [blame]
<?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>axis-rt-transport-http-javanet</artifactId>
<name>java.net HTTP Transport</name>
<description>
An alternative HTTP transport that uses the java.net.HttpURLConnection API. This transport only works with Java 1.5.
</description>
<url>${baseUrl}/transports/http-javanet</url>
<distributionManagement>
<site>
<id>axis</id>
<url>${baseSiteUrl}/transports/http-javanet</url>
</site>
</distributionManagement>
<properties>
<javaVersion>1.5</javaVersion>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>axis-rt-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>interop-mock</artifactId>
<version>${project.version}</version>
<type>war</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>${project.groupId}</groupId>
<artifactId>wsdl2java-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<goals>
<goal>generate-test-sources</goal>
</goals>
<configuration>
<file>src/test/wsdl/test.wsdl</file>
<generate>both</generate>
<mappings>
<mapping>
<namespace>http://www.example.org/test/</namespace>
<package>org.apache.axis.transport.http.javanet</package>
</mapping>
</mappings>
<deployWsdd>${project.build.directory}/deploy.wsdd</deployWsdd>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>default-test</id>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>reserve-network-port</id>
<goals>
<goal>reserve-network-port</goal>
</goals>
<phase>pre-integration-test</phase>
<configuration>
<portNames>
<portName>axis.httpPort</portName>
<portName>jetty.httpPort</portName>
<portName>jetty.stopPort</portName>
</portNames>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>${project.groupId}</groupId>
<artifactId>axis-server-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<id>start-server</id>
<goals>
<goal>start-server</goal>
</goals>
<configuration>
<port>${axis.httpPort}</port>
<wsdds>
<wsdd>
<directory>${project.build.directory}</directory>
<includes>
<include>deploy.wsdd</include>
</includes>
</wsdd>
</wsdds>
</configuration>
</execution>
<execution>
<id>stop-server</id>
<goals>
<goal>stop-all</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.veithen.alta</groupId>
<artifactId>alta-maven-plugin</artifactId>
<executions>
<execution>
<phase>pre-integration-test</phase>
<goals>
<goal>generate-properties</goal>
</goals>
<configuration>
<name>%artifactId%.location</name>
<value>%file%</value>
<dependencySet>
<scope>test</scope>
<includes>
<include>*:*:war:*</include>
</includes>
</dependencySet>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<war>${interop-mock.location}</war>
<stopKey>foo</stopKey>
<stopPort>${jetty.stopPort}</stopPort>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>${jetty.httpPort}</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>pre-integration-test</phase>
<goals>
<goal>deploy-war</goal>
</goals>
<configuration>
<daemon>true</daemon>
</configuration>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</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>
<systemPropertyVariables>
<axis.httpPort>${axis.httpPort}</axis.httpPort>
<jetty.httpPort>${jetty.httpPort}</jetty.httpPort>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>