source: extensions/jiwigo-ws-api/pom.xml @ 9920

Last change on this file since 9920 was 9920, checked in by mlg, 13 years ago

Deletion of unused libraries.

File size: 1.3 KB
Line 
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.2b</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
32  </dependencies>
33
34  <build>
35        <plugins>
36                <plugin>
37                <artifactId>maven-assembly-plugin</artifactId>
38                <version>2.2</version>
39                <configuration>
40                  <descriptorRefs>
41                    <descriptorRef>jar-with-dependencies</descriptorRef>
42                  </descriptorRefs>
43                </configuration>
44                </plugin>
45        </plugins>
46  </build>
47</project>
Note: See TracBrowser for help on using the repository browser.