1 | <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"> |
---|
2 | <modelVersion>4.0.0</modelVersion> |
---|
3 | <groupId>fr.mael.jiwigo</groupId> |
---|
4 | <artifactId>jiwigo-ws-api</artifactId> |
---|
5 | <version>0.4.0-SNAPSHOT</version> |
---|
6 | <dependencies> |
---|
7 | |
---|
8 | |
---|
9 | <dependency> |
---|
10 | <groupId>commons-lang</groupId> |
---|
11 | <artifactId>commons-lang</artifactId> |
---|
12 | <version>2.5</version> |
---|
13 | </dependency> |
---|
14 | <dependency> |
---|
15 | <groupId>org.apache.httpcomponents</groupId> |
---|
16 | <artifactId>httpclient</artifactId> |
---|
17 | <version>4.1</version> |
---|
18 | </dependency> |
---|
19 | <dependency> |
---|
20 | <groupId>org.slf4j</groupId> |
---|
21 | <artifactId>slf4j-api</artifactId> |
---|
22 | <version>1.6.1</version> |
---|
23 | <type>jar</type> |
---|
24 | <scope>compile</scope> |
---|
25 | </dependency> |
---|
26 | <dependency> |
---|
27 | <groupId>org.apache.sanselan</groupId> |
---|
28 | <artifactId>sanselan</artifactId> |
---|
29 | <version>0.97-incubator</version> |
---|
30 | </dependency> |
---|
31 | <dependency> |
---|
32 | <groupId>junit</groupId> |
---|
33 | <artifactId>junit</artifactId> |
---|
34 | <version>4.8.1</version> |
---|
35 | <type>jar</type> |
---|
36 | <scope>test</scope> |
---|
37 | </dependency> |
---|
38 | <dependency> |
---|
39 | <groupId>org.apache.httpcomponents</groupId> |
---|
40 | <artifactId>httpmime</artifactId> |
---|
41 | <version>4.1.1</version> |
---|
42 | <type>jar</type> |
---|
43 | <scope>compile</scope> |
---|
44 | </dependency> |
---|
45 | </dependencies> |
---|
46 | |
---|
47 | <build> |
---|
48 | <plugins> |
---|
49 | <plugin> |
---|
50 | <artifactId>maven-assembly-plugin</artifactId> |
---|
51 | <version>2.2</version> |
---|
52 | <configuration> |
---|
53 | <descriptorRefs> |
---|
54 | <descriptorRef>jar-with-dependencies</descriptorRef> |
---|
55 | </descriptorRefs> |
---|
56 | </configuration> |
---|
57 | </plugin> |
---|
58 | <plugin> |
---|
59 | <groupId>org.apache.maven.plugins</groupId> |
---|
60 | <artifactId>maven-compiler-plugin</artifactId> |
---|
61 | <configuration> |
---|
62 | <source>1.5</source> |
---|
63 | <target>1.5</target> |
---|
64 | </configuration> |
---|
65 | </plugin> |
---|
66 | </plugins> |
---|
67 | </build> |
---|
68 | <distributionManagement> |
---|
69 | <!-- use the following if you're not using a snapshot version. --> |
---|
70 | <repository> |
---|
71 | <id>nexus.dahanne.net</id> |
---|
72 | <name>RepositoryProxy</name> |
---|
73 | <url>http://nexus.dahanne.net/nexus/content/repositories/releases</url> |
---|
74 | </repository> |
---|
75 | <!-- use the following if you ARE using a snapshot version. --> |
---|
76 | <snapshotRepository> |
---|
77 | <id>nexus.dahanne.net</id> |
---|
78 | <name>RepositoryProxy</name> |
---|
79 | <url>http://nexus.dahanne.net/nexus/content/repositories/snapshots</url> |
---|
80 | </snapshotRepository> |
---|
81 | </distributionManagement> |
---|
82 | |
---|
83 | </project> |
---|