root/ETa/ETa-Capture-Test/pom.xml @ master
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/maven-v4_0_0.xsd">
|
|||
<modelVersion>4.0.0</modelVersion>
|
|||
<groupId>fr.unicaen.iota</groupId>
|
|||
bf9c3717 | Rémy Ménard | <artifactId>eta-capture-test</artifactId>
|
|
675e977d | Rémy Ménard | <version>2.1</version>
|
|
96454bcd | Sylvain L. Sauvage | <packaging>jar</packaging>
|
|
bf9c3717 | Rémy Ménard | <name>ETa-Capture-Test</name>
|
|
96454bcd | Sylvain L. Sauvage | ||
<properties>
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
bf9c3717 | Rémy Ménard | <epcis-version>0.5.0</epcis-version>
|
|
96454bcd | Sylvain L. Sauvage | </properties>
|
|
<dependencies>
|
|||
bf9c3717 | Rémy Ménard | <!-- Fosstrak dependencies -->
|
|
96454bcd | Sylvain L. Sauvage | <dependency>
|
|
bf9c3717 | Rémy Ménard | <groupId>org.fosstrak.epcis</groupId>
|
|
<artifactId>epcis-captureclient</artifactId>
|
|||
<version>${epcis-version}</version>
|
|||
96454bcd | Sylvain L. Sauvage | </dependency>
|
|
bf9c3717 | Rémy Ménard | <!-- IoTa dependencies -->
|
|
96454bcd | Sylvain L. Sauvage | <dependency>
|
|
bf9c3717 | Rémy Ménard | <groupId>fr.unicaen.iota</groupId>
|
|
<artifactId>eta-capture-client</artifactId>
|
|||
<version>${project.version}</version>
|
|||
96454bcd | Sylvain L. Sauvage | </dependency>
|
|
19b58bab | Rémy Ménard | <!-- Log dependencies -->
|
|
<dependency>
|
|||
<groupId>commons-logging</groupId>
|
|||
<artifactId>commons-logging</artifactId>
|
|||
<version>1.1.1</version>
|
|||
</dependency>
|
|||
bf9c3717 | Rémy Ménard | <dependency>
|
|
<groupId>log4j</groupId>
|
|||
<artifactId>log4j</artifactId>
|
|||
<version>1.2.16</version>
|
|||
</dependency>
|
|||
96454bcd | Sylvain L. Sauvage | </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>
|
|||
bf9c3717 | Rémy Ménard | <groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|||
<version>2.4</version>
|
|||
<configuration>
|
|||
<archive>
|
|||
<manifest>
|
|||
<mainClass>fr.unicaen.iota.eta.capture.test.Main</mainClass>
|
|||
</manifest>
|
|||
</archive>
|
|||
</configuration>
|
|||
96454bcd | Sylvain L. Sauvage | </plugin>
|
|
<plugin>
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
|||
<artifactId>maven-assembly-plugin</artifactId>
|
|||
<version>2.3</version>
|
|||
<executions>
|
|||
bf9c3717 | Rémy Ménard | <execution>
|
|
<id>bin-with-dependencies</id>
|
|||
<phase>package</phase>
|
|||
<goals>
|
|||
<goal>single</goal>
|
|||
</goals>
|
|||
<configuration>
|
|||
<descriptors>
|
|||
<descriptor>src/main/assembly/bin-with-dependencies.xml</descriptor>
|
|||
</descriptors>
|
|||
</configuration>
|
|||
</execution>
|
|||
96454bcd | Sylvain L. Sauvage | <execution>
|
|
<id>sources</id>
|
|||
<phase>package</phase>
|
|||
<goals>
|
|||
<goal>single</goal>
|
|||
</goals>
|
|||
<configuration>
|
|||
<descriptorRefs>
|
|||
<descriptorRef>src</descriptorRef>
|
|||
</descriptorRefs>
|
|||
</configuration>
|
|||
</execution>
|
|||
</executions>
|
|||
</plugin>
|
|||
</plugins>
|
|||
</build>
|
|||
675e977d | Rémy Ménard | <!--
|
|
bf9c3717 | Rémy Ménard | <repositories>
|
|
<repository>
|
|||
<id>fosstrak</id>
|
|||
<name>Fosstrak repository</name>
|
|||
<url>https://oss.sonatype.org/content/repositories/public</url>
|
|||
</repository>
|
|||
</repositories>
|
|||
675e977d | Rémy Ménard | -->
|
|
bf9c3717 | Rémy Ménard | ||
96454bcd | Sylvain L. Sauvage | </project>
|