root/DSeTa/DSeTa-Client/pom.xml @ 675e977d
96454bcd | 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>
|
|||
<groupId>fr.unicaen.iota</groupId>
|
|||
<artifactId>dseta-client</artifactId>
|
|||
675e977d | Rémy Ménard | <version>2.1</version>
|
|
96454bcd | Sylvain L. Sauvage | <packaging>jar</packaging>
|
|
<name>DSeTa-Client</name>
|
|||
<properties>
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
8fd1d584 | Rémy Ménard | <lib-cxf-version>2.7.5</lib-cxf-version>
|
|
96454bcd | Sylvain L. Sauvage | </properties>
|
|
<dependencies>
|
|||
8fd1d584 | Rémy Ménard | <!-- IoTa depdencies -->
|
|
96454bcd | Sylvain L. Sauvage | <dependency>
|
|
<groupId>fr.unicaen.iota</groupId>
|
|||
8fd1d584 | Rémy Ménard | <artifactId>ds-client</artifactId>
|
|
96454bcd | Sylvain L. Sauvage | <version>${project.version}</version>
|
|
</dependency>
|
|||
<dependency>
|
|||
<groupId>fr.unicaen.iota</groupId>
|
|||
8fd1d584 | Rémy Ménard | <artifactId>tau</artifactId>
|
|
96454bcd | Sylvain L. Sauvage | <version>${project.version}</version>
|
|
</dependency>
|
|||
<!-- CXF dependencies -->
|
|||
<dependency>
|
|||
<groupId>org.apache.cxf</groupId>
|
|||
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|||
<version>${lib-cxf-version}</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>org.apache.cxf</groupId>
|
|||
<artifactId>cxf-rt-transports-http</artifactId>
|
|||
<version>${lib-cxf-version}</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>org.apache.cxf</groupId>
|
|||
<artifactId>cxf-rt-transports-local</artifactId>
|
|||
<version>${lib-cxf-version}</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>org.apache.cxf</groupId>
|
|||
<artifactId>cxf-rt-databinding-jaxb</artifactId>
|
|||
<version>${lib-cxf-version}</version>
|
|||
</dependency>
|
|||
<!-- Log dependencies -->
|
|||
<dependency>
|
|||
<groupId>commons-logging</groupId>
|
|||
<artifactId>commons-logging</artifactId>
|
|||
<version>1.1.1</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.cxf</groupId>
|
|||
<artifactId>cxf-codegen-plugin</artifactId>
|
|||
8fd1d584 | Rémy Ménard | <version>${lib-cxf-version}</version>
|
|
96454bcd | Sylvain L. Sauvage | <executions>
|
|
<execution>
|
|||
<id>generate-sources</id>
|
|||
<phase>generate-sources</phase>
|
|||
<configuration>
|
|||
<sourceRoot>${project.build.directory}/generated-sources/cxf</sourceRoot>
|
|||
<defaultOptions>
|
|||
<packagenames>
|
|||
<packagename>urn:unicaen:iota:dseta:xsd=fr.unicaen.iota.dseta.model</packagename>
|
|||
<packagename>urn:unicaen:iota:dseta:wsdl=fr.unicaen.iota.dseta.soap</packagename>
|
|||
</packagenames>
|
|||
</defaultOptions>
|
|||
<wsdlOptions>
|
|||
<wsdlOption>
|
|||
8fd1d584 | Rémy Ménard | <wsdl>${basedir}/src/main/resources/wsdl/dseta.wsdl</wsdl>
|
|
<extraargs>
|
|||
<extraarg>-nexclude</extraarg>
|
|||
<extraarg>urn:unicaen:iota:tau:xsd=fr.unicaen.iota.tau.model</extraarg>
|
|||
<extraarg>-nexclude</extraarg>
|
|||
<extraarg>urn:unicaen:iota:ds:wsdl=fr.unicaen.iota.ds.soap</extraarg>
|
|||
<extraarg>-nexclude</extraarg>
|
|||
<extraarg>urn:unicaen:iota:ds:xsd=fr.unicaen.iota.ds.model</extraarg>
|
|||
</extraargs>
|
|||
96454bcd | Sylvain L. Sauvage | </wsdlOption>
|
|
</wsdlOptions>
|
|||
</configuration>
|
|||
<goals>
|
|||
<goal>wsdl2java</goal>
|
|||
</goals>
|
|||
</execution>
|
|||
</executions>
|
|||
</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>
|