102 lines
3.7 KiB
XML
102 lines
3.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.talend.studio</groupId>
|
|
<artifactId>tcommon-studio-se</artifactId>
|
|
<version>8.0.1-SNAPSHOT</version>
|
|
<relativePath>../../../</relativePath>
|
|
</parent>
|
|
<artifactId>org.talend.libraries.apache.axis2</artifactId>
|
|
<packaging>eclipse-plugin</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>copy</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.basedir}/lib</outputDirectory>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-kernel</artifactId>
|
|
<version>1.8.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-adb</artifactId>
|
|
<version>1.8.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-transport-http</artifactId>
|
|
<version>1.8.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-transport-local</artifactId>
|
|
<version>1.8.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-codegen</artifactId>
|
|
<version>1.8.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-metadata</artifactId>
|
|
<version>1.8.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-java2wsdl</artifactId>
|
|
<version>1.8.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-adb-codegen</artifactId>
|
|
<version>1.8.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.ws.xmlschema</groupId>
|
|
<artifactId>xmlschema-core</artifactId>
|
|
<version>2.2.1</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.ws.commons.axiom</groupId>
|
|
<artifactId>axiom-api</artifactId>
|
|
<version>1.3.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.ws.commons.axiom</groupId>
|
|
<artifactId>axiom-impl</artifactId>
|
|
<version>1.3.0</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
<artifactId>woodstox-core-asl</artifactId>
|
|
<version>4.4.1</version>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
<artifactId>stax2-api</artifactId>
|
|
<version>4.2.1</version>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|