root/CaPPa/DS-Xi-Client/pom.xml @ 8fd1d584
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>ds-xi-client</artifactId>
|
|||
8fd1d584 | Rémy Ménard | <version>2.0</version>
|
|
96454bcd | Sylvain L. Sauvage | <packaging>jar</packaging>
|
|
<name>DS-Xi-Client</name>
|
|||
<properties>
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
</properties>
|
|||
<dependencies>
|
|||
<!-- IoTa dependecy -->
|
|||
<dependency>
|
|||
<groupId>fr.unicaen.iota</groupId>
|
|||
<artifactId>libxacml-ds</artifactId>
|
|||
<version>${project.version}</version>
|
|||
</dependency>
|
|||
19b58bab | Rémy Ménard | <!-- Other dependencies -->
|
|
<dependency>
|
|||
<groupId>net.sf.sunxacml</groupId>
|
|||
<artifactId>sunxacml</artifactId>
|
|||
<version>2.0-SNAPSHOT</version>
|
|||
</dependency>
|
|||
96454bcd | Sylvain L. Sauvage | <dependency>
|
|
<groupId>javax.servlet</groupId>
|
|||
<artifactId>javax.servlet-api</artifactId>
|
|||
<version>3.0.1</version>
|
|||
<scope>provided</scope>
|
|||
</dependency>
|
|||
<!-- Log dependency -->
|
|||
<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>
|
|||
8fd1d584 | Rémy Ménard | <!--
|
|
<repositories>
|
|||
<repository>
|
|||
<id>sunxacml-repository</id>
|
|||
<name>sunxacml Repository</name>
|
|||
<url>http://sourceforge.net/projects/sunxacml/files/maven/snapshots</url>
|
|||
</repository>
|
|||
</repositories>
|
|||
-->
|
|||
96454bcd | Sylvain L. Sauvage | </project>
|