root/ALfA/ALfA/pom.xml @ bf9c3717
| 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>alfa</artifactId>
|
|
| bf9c3717 | Rémy Ménard | <version>1.99</version>
|
|
| 2e0a7cb1 | Sylvain L. Sauvage | <packaging>jar</packaging>
|
|
<name>ALfA</name>
|
|||
<properties>
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
<epcis-version>0.5.0</epcis-version>
|
|||
</properties>
|
|||
<dependencies>
|
|||
<!-- IoTa dependencies -->
|
|||
<dependency>
|
|||
| 96454bcd | Sylvain L. Sauvage | <groupId>fr.unicaen.iota</groupId>
|
|
| 2e0a7cb1 | Sylvain L. Sauvage | <artifactId>alfa-pi</artifactId>
|
|
| 96454bcd | Sylvain L. Sauvage | <version>${project.version}</version>
|
|
| 2e0a7cb1 | Sylvain L. Sauvage | </dependency>
|
|
| 19b58bab | Rémy Ménard | <dependency>
|
|
<groupId>fr.unicaen.iota</groupId>
|
|||
<artifactId>tau</artifactId>
|
|||
<version>${project.version}</version>
|
|||
</dependency>
|
|||
| 2e0a7cb1 | Sylvain L. Sauvage | <dependency>
|
|
| 96454bcd | Sylvain L. Sauvage | <groupId>fr.unicaen.iota</groupId>
|
|
<artifactId>nu</artifactId>
|
|||
<version>${project.version}</version>
|
|||
| 2e0a7cb1 | Sylvain L. Sauvage | </dependency>
|
|
<dependency>
|
|||
| 96454bcd | Sylvain L. Sauvage | <groupId>fr.unicaen.iota</groupId>
|
|
<artifactId>dseta-client</artifactId>
|
|||
<version>${project.version}</version>
|
|||
| 2e0a7cb1 | Sylvain L. Sauvage | </dependency>
|
|
<dependency>
|
|||
| 96454bcd | Sylvain L. Sauvage | <groupId>fr.unicaen.iota</groupId>
|
|
| 19b58bab | Rémy Ménard | <artifactId>eta-query-client</artifactId>
|
|
| 96454bcd | Sylvain L. Sauvage | <version>${project.version}</version>
|
|
| 2e0a7cb1 | Sylvain L. Sauvage | </dependency>
|
|
| 19b58bab | Rémy Ménard | <!-- Fosstrak dependencies -->
|
|
<dependency>
|
|||
<groupId>org.fosstrak.epcis</groupId>
|
|||
<artifactId>epcis-commons</artifactId>
|
|||
<version>${epcis-version}</version>
|
|||
</dependency>
|
|||
| 2e0a7cb1 | Sylvain L. Sauvage | <!-- 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>
|
|||
</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.maven.plugins</groupId>
|
|||
<artifactId>maven-jar-plugin</artifactId>
|
|||
<version>2.4</version>
|
|||
<configuration>
|
|||
<archive>
|
|||
<manifest>
|
|||
<mainClass>fr.unicaen.iota.application.rmi.RMIServer</mainClass>
|
|||
</manifest>
|
|||
</archive>
|
|||
</configuration>
|
|||
</plugin>
|
|||
</plugins>
|
|||
</build>
|
|||
</project>
|