root/ETa/ETa-Callback/ETa-Callback-Sender/pom.xml @ 96454bcd
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>
|
|
<artifactId>eta-callback-sender</artifactId>
|
|||
<version>1.9-mock</version>
|
|||
<packaging>war</packaging>
|
|||
2e0a7cb1 | Sylvain L. Sauvage | ||
<name>ETa-Callback-Sender</name>
|
|||
<properties>
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
</properties>
|
|||
<dependencies>
|
|||
<!-- ActiveMQ dependency -->
|
|||
<dependency>
|
|||
<groupId>org.apache.activemq</groupId>
|
|||
<artifactId>activemq-core</artifactId>
|
|||
96454bcd | Sylvain L. Sauvage | <version>5.6.0</version>
|
|
2e0a7cb1 | Sylvain L. Sauvage | </dependency>
|
|
<!-- Log dependency -->
|
|||
<dependency>
|
|||
<groupId>log4j</groupId>
|
|||
<artifactId>log4j</artifactId>
|
|||
<version>1.2.16</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>commons-logging</groupId>
|
|||
<artifactId>commons-logging</artifactId>
|
|||
<version>1.1.1</version>
|
|||
</dependency>
|
|||
<dependency>
|
|||
<groupId>org.slf4j</groupId>
|
|||
<artifactId>slf4j-log4j12</artifactId>
|
|||
96454bcd | Sylvain L. Sauvage | <version>1.6.4</version>
|
|
2e0a7cb1 | Sylvain L. Sauvage | </dependency>
|
|
96454bcd | Sylvain L. Sauvage | <!-- Servlet dependency -->
|
|
2e0a7cb1 | Sylvain L. Sauvage | <dependency>
|
|
96454bcd | Sylvain L. Sauvage | <groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|||
<version>3.0.1</version>
|
|||
<scope>provided</scope>
|
|||
2e0a7cb1 | Sylvain L. Sauvage | </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>
|
|||
96454bcd | Sylvain L. Sauvage | <plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|||
<artifactId>maven-jar-plugin</artifactId>
|
|||
<version>2.4</version>
|
|||
<configuration>
|
|||
<archive>
|
|||
<manifest>
|
|||
<mainClass>fr.unicaen.iota.eta.callback.sender.Main</mainClass>
|
|||
</manifest>
|
|||
</archive>
|
|||
</configuration>
|
|||
<executions>
|
|||
<execution>
|
|||
<id>make-a-jar</id>
|
|||
<phase>compile</phase>
|
|||
<goals>
|
|||
<goal>jar</goal>
|
|||
</goals>
|
|||
</execution>
|
|||
</executions>
|
|||
</plugin>
|
|||
<plugin>
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
|||
<artifactId>maven-war-plugin</artifactId>
|
|||
<version>2.2</version>
|
|||
<configuration>
|
|||
<webResources>
|
|||
<resource>
|
|||
<directory>${project.basedir}</directory>
|
|||
<includes>
|
|||
<include>LICENSE</include>
|
|||
<include>LISEZMOI</include>
|
|||
<include>README</include>
|
|||
</includes>
|
|||
<targetPath>META-INF</targetPath>
|
|||
<filtering>false</filtering>
|
|||
</resource>
|
|||
</webResources>
|
|||
</configuration>
|
|||
</plugin>
|
|||
2e0a7cb1 | Sylvain L. Sauvage | <plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|||
<artifactId>maven-assembly-plugin</artifactId>
|
|||
<version>2.3</version>
|
|||
<executions>
|
|||
96454bcd | Sylvain L. Sauvage | <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>
|
|||
2e0a7cb1 | 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>
|
|||
</project>
|