blob: c410f0c840554902fc8a38437f2925a08e5599a0 [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</groupId>
<artifactId>apache</artifactId>
<version>9</version>
</parent>
<groupId>org.apache.axis</groupId>
<artifactId>axis-project</artifactId>
<name>Axis</name>
<version>1.4.1-SNAPSHOT</version>
<packaging>pom</packaging>
<url>${baseUrl}/</url>
<issueManagement>
<system>jira</system>
<url>http://issues.apache.org/jira/browse/AXIS</url>
</issueManagement>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/axis/axis1/java/trunk</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/axis/axis1/java/trunk</developerConnection>
<url>http://svn.apache.org/viewvc/axis/axis1/java/trunk</url>
</scm>
<mailingLists>
<mailingList>
<name>Developer List</name>
<subscribe>java-dev-subscribe@axis.apache.org</subscribe>
<unsubscribe>java-dev-unsubscribe@axis.apache.org</unsubscribe>
<post>java-dev@axis.apache.org</post>
<archive>http://mail-archives.apache.org/mod_mbox/axis-java-dev/</archive>
</mailingList>
<mailingList>
<name>User List</name>
<subscribe>axis1-java-user-subscribe@axis.apache.org</subscribe>
<unsubscribe>axis1-java-user-unsubscribe@axis.apache.org</unsubscribe>
<post>axis1-java-user@axis.apache.org</post>
<archive>http://mail-archives.apache.org/mod_mbox/axis-axis1-java-user/</archive>
</mailingList>
</mailingLists>
<inceptionYear>2000</inceptionYear>
<modules>
<module>axis</module>
<module>axis-ant</module>
<module>axis-codegen</module>
<module>axis-jaxrpc</module>
<module>axis-model</module>
<module>axis-rt-compat</module>
<module>axis-rt-core</module>
<module>axis-rt-jws</module>
<module>axis-rt-databinding-castor</module>
<module>axis-rt-databinding-xmlbeans</module>
<module>axis-rt-management</module>
<module>axis-rt-provider-bsf</module>
<module>axis-rt-soapmonitor</module>
<module>axis-rt-transport-http-hc3</module>
<module>axis-rt-transport-http-javanet</module>
<module>axis-rt-transport-jms</module>
<module>axis-rt-transport-mail</module>
<module>axis-saaj</module>
<module>axis-standalone-server</module>
<module>axis-testutils</module>
<module>axis-tools</module>
<module>axis-war</module>
<module>distribution</module>
<module>integration</module>
<module>interop-mock</module>
<module>maven</module>
<module>samples</module>
<module>soapmonitor-applet</module>
<module>soapmonitor-client</module>
<module>tcpmon</module>
<module>tests</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.8</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-testutils</artifactId>
<version>1.2.13</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
</dependencyManagement>
<prerequisites>
<maven>3.0.3</maven>
</prerequisites>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>false</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>1.4</source>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<configuration>
<systemPropertyVariables>
<!-- Axis doesn't contain META-INF/services/* files for SAAJ. Instead, the SAAJ API
library provided by Axis uses the Axis SAAJ implementation by default. That's an issue on Java 1.6
because the SAAJ API provided by the JRE will be used. Therefore we need to set this system property
to execute the SAAJ unit tests on Java 1.6. -->
<javax.xml.soap.MessageFactory>org.apache.axis.soap.MessageFactoryImpl</javax.xml.soap.MessageFactory>
<javax.xml.soap.SOAPFactory>org.apache.axis.soap.SOAPFactoryImpl</javax.xml.soap.SOAPFactory>
<javax.xml.soap.SOAPConnectionFactory>org.apache.axis.soap.SOAPConnectionFactoryImpl</javax.xml.soap.SOAPConnectionFactory>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.11</version>
<configuration>
<systemPropertyVariables>
<!-- See the corresponding surefire configuration for more information about this. -->
<javax.xml.soap.MessageFactory>org.apache.axis.soap.MessageFactoryImpl</javax.xml.soap.MessageFactory>
<javax.xml.soap.SOAPFactory>org.apache.axis.soap.SOAPFactoryImpl</javax.xml.soap.SOAPFactory>
<javax.xml.soap.SOAPConnectionFactory>org.apache.axis.soap.SOAPConnectionFactoryImpl</javax.xml.soap.SOAPConnectionFactory>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.2</version>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
</plugin>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>1.7</version>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>7.5.4.v20111024</version>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.2</version>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<!-- We don't want to support Maven 2 and we need at least 3.0.4 to avoid MINVOKER-107 -->
<requireMavenVersion>
<version>3.0.4</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>${javaVersion}</source>
<target>${javaVersion}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<executions>
<execution>
<id>select-java-signatures</id>
<phase>verify</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>
javaVersion = project.properties['javaVersion']
if (javaVersion == '1.4') {
artifactId = 'java14-sun'
} else if (javaVersion == '1.5') {
artifactId = 'java15-sun'
}
project.properties['signatureArtifactId'] = artifactId
project.properties['signatureVersion'] = '1.0'
</source>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<!-- Note: 1.9 contains a call to a Java 7 specific method (java.nio.CharBuffer.subSequence(II)Ljava/nio/CharBuffer;)
that is triggered when an undefined reference is found. This breaks error reporting on Java 5/6. -->
<version>1.8</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>${signatureArtifactId}</artifactId>
<version>${signatureVersion}</version>
</signature>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>issue-tracking</report>
<report>mailing-list</report>
<!-- report>project-team</report -->
<report>scm</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<reportSets>
<reportSet>
<id>aggregate</id>
<reports>
<report>aggregate</report>
</reports>
<configuration>
<source>1.4</source>
<excludePackageNames>test.*:samples.*</excludePackageNames>
<destDir>apiDocs</destDir>
</configuration>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<properties>
<javaVersion>1.4</javaVersion>
<baseUrl>http://axis.apache.org/axis/java</baseUrl>
<!-- Dummy site URL to be able to use site:stage -->
<baseSiteUrl>dav:http://localhost/sites/axis</baseSiteUrl>
</properties>
<distributionManagement>
<site>
<id>axis</id>
<url>${baseSiteUrl}/</url>
</site>
</distributionManagement>
</project>