| <?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.axis2</groupId> |
| <artifactId>axis2</artifactId> |
| <version>1.8.1-SNAPSHOT</version> |
| <relativePath>../../../pom.xml</relativePath> |
| </parent> |
| <artifactId>axis2-transport-testkit</artifactId> |
| <name>Apache Axis2 - Transport - testkit</name> |
| <description>Framework to build test suites for Axis2 transports</description> |
| |
| <url>http://axis.apache.org/axis2/java/core/</url> |
| <scm> |
| <connection>scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git</connection> |
| <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git</developerConnection> |
| <url>https://gitbox.apache.org/repos/asf?p=axis-axis2-java-core.git;a=summary</url> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.axis2</groupId> |
| <artifactId>axis2-kernel</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.axis2</groupId> |
| <artifactId>addressing</artifactId> |
| <type>mar</type> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.axis2</groupId> |
| <artifactId>axis2-transport-base</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>org.osgi.framework</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-lang3</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-slf4j-impl</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.aspectj</groupId> |
| <artifactId>aspectjrt</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.jetty</groupId> |
| <artifactId>jetty-server</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-api</artifactId> |
| <version>2.14.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core</artifactId> |
| <version>2.14.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-jcl</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src/main/resources</directory> |
| </resource> |
| <resource> |
| <directory>target/generated-resources</directory> |
| </resource> |
| </resources> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.axis2</groupId> |
| <artifactId>axis2-repo-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <phase>generate-resources</phase> |
| <goals> |
| <goal>create-repository</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${project.build.directory}/generated-resources/org/apache/axis2/transport/repo</outputDirectory> |
| <generateFileLists>true</generateFileLists> |
| <generatedAxis2xml> |
| <messageFormatters> |
| <messageFormatter> |
| <contentType>text/plain</contentType> |
| <className>org.apache.axis2.format.PlainTextFormatter</className> |
| </messageFormatter> |
| <messageFormatter> |
| <contentType>application/octet-stream</contentType> |
| <className>org.apache.axis2.format.BinaryFormatter</className> |
| </messageFormatter> |
| </messageFormatters> |
| <messageBuilders> |
| <messageBuilder> |
| <contentType>text/plain</contentType> |
| <className>org.apache.axis2.format.PlainTextBuilder</className> |
| </messageBuilder> |
| <messageBuilder> |
| <contentType>application/octet-stream</contentType> |
| <className>org.apache.axis2.format.BinaryBuilder</className> |
| </messageBuilder> |
| </messageBuilders> |
| </generatedAxis2xml> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>animal-sniffer-maven-plugin</artifactId> |
| <configuration> |
| <!-- The doclet uses com.sun APIs and signature verification would fail. That's OK |
| because the artifact is only used during the build anyway. --> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |