root/SigMa/SigMa-Commons/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/xsd/maven-4.0.0.xsd">
|
|||
<modelVersion>4.0.0</modelVersion>
|
|||
<groupId>fr.unicaen.iota</groupId>
|
|||
<artifactId>sigma-commons</artifactId>
|
|||
675e977d | Rémy Ménard | <version>2.1</version>
|
|
96454bcd | Sylvain L. Sauvage | <packaging>jar</packaging>
|
|
<name>SigMa-Commons</name>
|
|||
<properties>
|
|||
<epcis-version>0.5.0</epcis-version>
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
</properties>
|
|||
<dependencies>
|
|||
19b58bab | Rémy Ménard | <!-- IoTa dependencies -->
|
|
<dependency>
|
|||
<groupId>fr.unicaen.iota</groupId>
|
|||
<artifactId>mu</artifactId>
|
|||
<version>${project.version}</version>
|
|||
</dependency>
|
|||
96454bcd | Sylvain L. Sauvage | <!-- Fosstrak dependency -->
|
|
<dependency>
|
|||
<groupId>org.fosstrak.epcis</groupId>
|
|||
<artifactId>epcis-commons</artifactId>
|
|||
<version>${epcis-version}</version>
|
|||
</dependency>
|
|||
<!-- Crypto dependency -->
|
|||
<dependency>
|
|||
bf9c3717 | Rémy Ménard | <groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|||
<version>1.48</version>
|
|||
96454bcd | Sylvain L. Sauvage | </dependency>
|
|
19b58bab | Rémy Ménard | <dependency>
|
|
<groupId>org.apache.santuario</groupId>
|
|||
<artifactId>xmlsec</artifactId>
|
|||
<version>1.5.2</version>
|
|||
<type>jar</type>
|
|||
</dependency>
|
|||
96454bcd | Sylvain L. Sauvage | <!-- 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.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>
|