* fix(TDI-49252): Move crm4client lib to maven * fix(TDI-49252): Allign axiom-api * Bump axiom * fix(TDI-49252): Fix crm4client issue
100 lines
3.0 KiB
XML
100 lines
3.0 KiB
XML
<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>
|
|
|
|
<groupId>org.talend.components</groupId>
|
|
<artifactId>crm4client</artifactId>
|
|
<version>1.0.2</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>crm4client</name>
|
|
|
|
<properties>
|
|
<talend.nexus.url>https://artifacts-oss.talend.com</talend.nexus.url>
|
|
<axis2.version>1.8.2</axis2.version>
|
|
<httpclient.version>4.5.13</httpclient.version>
|
|
<httpcore.version>4.4.13</httpcore.version>
|
|
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
|
</properties>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>talend_nexus_deployment</id>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceSnapshot/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>talend_nexus_deployment</id>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceRelease/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-xmlbeans</artifactId>
|
|
<version>${axis2.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.ws.commons.axiom</groupId>
|
|
<artifactId>axiom-api</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.ws.commons.axiom</groupId>
|
|
<artifactId>axiom-impl</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ws.commons.axiom</groupId>
|
|
<artifactId>axiom-impl</artifactId>
|
|
<version>1.2.15</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.axis2</groupId>
|
|
<artifactId>axis2-transport-http</artifactId>
|
|
<version>${axis2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>
|
|
<version>3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.xml.soap</groupId>
|
|
<artifactId>javax.xml.soap-api</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jcifs</groupId>
|
|
<artifactId>jcifs</artifactId>
|
|
<version>1.3.17</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |