root/IoTa-DiscoveryWS/IoTa-DiscoveryWS-Client/pom.xml @ master
2e0a7cb1 | Sylvain L. Sauvage | <?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>
|
|||
96454bcd | Sylvain L. Sauvage | <groupId>fr.unicaen.iota</groupId>
|
|
2e0a7cb1 | Sylvain L. Sauvage | <artifactId>discovery-client</artifactId>
|
|
675e977d | Rémy Ménard | <version>2.1</version>
|
|
2e0a7cb1 | Sylvain L. Sauvage | <packaging>jar</packaging>
|
|
<name>IoTa-DiscoveryWS-Client</name>
|
|||
<properties>
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
<axis2.version>1.5.6</axis2.version>
|
|||
</properties>
|
|||
<dependencies>
|
|||
<!-- Axis2 dependencies -->
|
|||
<dependency>
|
|||
<groupId>org.apache.axis2</groupId>
|
|||
<artifactId>axis2-kernel</artifactId>
|
|||
<version>${axis2.version}</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>org.apache.axis2</groupId>
|
|||
<artifactId>axis2-adb</artifactId>
|
|||
<version>${axis2.version}</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>org.apache.axis2</groupId>
|
|||
<artifactId>axis2-transport-local</artifactId>
|
|||
<version>${axis2.version}</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>org.apache.axis2</groupId>
|
|||
<artifactId>axis2-transport-http</artifactId>
|
|||
<version>${axis2.version}</version>
|
|||
</dependency>
|
|||
<!-- Log dependencies -->
|
|||
<dependency>
|
|||
<groupId>commons-logging</groupId>
|
|||
<artifactId>commons-logging</artifactId>
|
|||
<version>1.1.1</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>log4j</groupId>
|
|||
<artifactId>log4j</artifactId>
|
|||
<version>1.2.16</version>
|
|||
</dependency>
|
|||
<!-- Test dependency -->
|
|||
<dependency>
|
|||
<groupId>junit</groupId>
|
|||
<artifactId>junit</artifactId>
|
|||
<version>4.10</version>
|
|||
<scope>test</scope>
|
|||
</dependency>
|
|||
<!-- Other dependency -->
|
|||
<dependency>
|
|||
<groupId>org.apache.ws.commons.axiom</groupId>
|
|||
<artifactId>axiom-api</artifactId>
|
|||
<version>1.2.12</version>
|
|||
</dependency>
|
|||
</dependencies>
|
|||
<build>
|
|||
<plugins>
|
|||
<plugin>
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
|||
<artifactId>maven-compiler-plugin</artifactId>
|
|||
<version>2.5.1</version>
|
|||
<configuration>
|
|||
<source>1.6</source>
|
|||
<target>1.6</target>
|
|||
</configuration>
|
|||
</plugin>
|
|||
<plugin>
|
|||
<groupId>org.apache.axis2</groupId>
|
|||
<artifactId>axis2-wsdl2code-maven-plugin</artifactId>
|
|||
<version>${axis2.version}</version>
|
|||
<executions>
|
|||
<execution>
|
|||
<goals>
|
|||
<goal>wsdl2code</goal>
|
|||
</goals>
|
|||
<configuration>
|
|||
<packageName>fr.unicaen.iota.discovery.client.soap</packageName>
|
|||
<wsdlFile>src/main/resources/ESDS_Service.wsdl</wsdlFile>
|
|||
</configuration>
|
|||
</execution>
|
|||
</executions>
|
|||
</plugin>
|
|||
<plugin>
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
|||
<artifactId>maven-jar-plugin</artifactId>
|
|||
<version>2.4</version>
|
|||
<configuration>
|
|||
<archive>
|
|||
<manifest>
|
|||
<mainClass>fr.unicaen.iota.discovery.client.gui.CaptureClient</mainClass>
|
|||
</manifest>
|
|||
</archive>
|
|||
</configuration>
|
|||
</plugin>
|
|||
<plugin>
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
|||
<artifactId>maven-assembly-plugin</artifactId>
|
|||
<version>2.3</version>
|
|||
<executions>
|
|||
<execution>
|
|||
<id>sources</id>
|
|||
<phase>package</phase>
|
|||
<goals>
|
|||
<goal>single</goal>
|
|||
</goals>
|
|||
<configuration>
|
|||
<descriptorRefs>
|
|||
<descriptorRef>src</descriptorRef>
|
|||
</descriptorRefs>
|
|||
</configuration>
|
|||
</execution>
|
|||
</executions>
|
|||
</plugin>
|
|||
</plugins>
|
|||
</build>
|
|||
</project>
|