axis2-kernel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.axis2</groupId> <artifactId>axis2-kernel</artifactId> <version>2.0.0</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.axis2</groupId> <artifactId>axis2</artifactId> <version>2.0.0</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>axis2-kernel</artifactId> <name>Apache Axis2 - Kernel</name> <description>Core Parts of Axis2. This includes Axis2 engine, Client API, Addressing support, etc., </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>v2.0.0</tag> </scm> <dependencies> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-api</artifactId> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-impl</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-legacy-attachments</artifactId> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-ws-metadata_2.0_spec</artifactId> </dependency> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-fileupload2-core</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-fileupload2-jakarta-servlet6</artifactId> </dependency> <dependency> <groupId>wsdl4j</groupId> <artifactId>wsdl4j</artifactId> </dependency> <dependency> <groupId>org.apache.ws.xmlschema</groupId> <artifactId>xmlschema-core</artifactId> </dependency> <dependency> <groupId>org.apache.neethi</groupId> <artifactId>neethi</artifactId> </dependency> <dependency> <groupId>org.apache.woden</groupId> <artifactId>woden-core</artifactId> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <!-- <dependency> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> </dependency> --> <dependency> <groupId>jakarta.ws.rs</groupId> <artifactId>jakarta.ws.rs-api</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>jakarta.activation</groupId> <artifactId>jakarta.activation-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <!-- <scope>test</scope> --> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-legacy</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom-truth</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.angus</groupId> <artifactId>angus-mail</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <resources> <resource> <directory>conf</directory> <includes> <include>axis2.xml</include> </includes> <filtering>false</filtering> </resource> <resource> <directory>src</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>test-resources/deployment/ClasspathModule</directory> <includes> <include>**/**</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-remote-resources-plugin</artifactId> <executions> <execution> <goals> <goal>process</goal> </goals> <configuration> <resourceBundles> <resourceBundle>org.apache.axis2:axis2-resource-bundle:${project.version}</resourceBundle> </resourceBundles> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <inherited>true</inherited> <configuration> <excludes> <exclude>**/*Abstract*.java</exclude> </excludes> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>process-resources</id> <phase>process-resources</phase> <configuration> <target> <tstamp> <format property="build.time" pattern="MMM dd, yyyy (hh:mm:ss z)" locale="en" /> </tstamp> <filter token="axisVersion" value="${project.version}" /> <filter token="TODAY" value="${build.time}" /> <copy toDir="${basedir}/target/classes/org/apache/axis2/i18n" overwrite="true" filtering="on" file="${basedir}/src/org/apache/axis2/i18n/resource.properties" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> <execution> <id>process-test-resources</id> <phase>process-test-resources</phase> <configuration> <target unless="maven.test.skip"> <copy todir="${project.build.directory}/test-resources"> <fileset dir="${basedir}/test-resources" /> </copy> <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/service2" /> <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/echo" /> <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/invalidservice" /> <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/module1" /> <ant antfile="build.xml" inheritall="true" inheritrefs="true" dir="test-resources/deployment/serviceModule" /> <copy file="${basedir}/test-resources/deployment/axis2.xml" tofile="${basedir}/target/test-resources/deployment/axis2.xml" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> <execution> <id>test-compile</id> <phase>test-compile</phase> <configuration> <target unless="maven.test.skip"> <property name="maven.build.dir" location="${basedir}/target" /> <ant antfile="j2secbuild.xml" inheritall="true" inheritrefs="true" dir="test-resources/" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>generate-test-zip</id> <phase>generate-test-resources</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>test-zip/assembly.xml</descriptor> </descriptors> <finalName>test-zip</finalName> <appendAssemblyId>false</appendAssemblyId> <attach>false</attach> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>