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

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

Changes function name (to english)
version changed to 0.13.1

File size: 1.9 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.13.1</version>
6
7
8
9  <dependencies>
10
11
12        <dependency>
13            <groupId>org.jdom</groupId>
14            <artifactId>jdom</artifactId>
15            <version>1.1</version>
16        </dependency>
17        <dependency>
18            <groupId>commons-lang</groupId>
19            <artifactId>commons-lang</artifactId>
20            <version>2.5</version>
21        </dependency>
22        <dependency>
23            <groupId>commons-httpclient</groupId>
24            <artifactId>commons-httpclient</artifactId>
25            <version>3.1</version>
26        </dependency>
27        <dependency>
28                <groupId>commons-logging</groupId>
29                <artifactId>commons-logging</artifactId>
30                <version>1.1</version>
31        </dependency>
32        <dependency>
33            <groupId>log4j</groupId>
34            <artifactId>log4j</artifactId>
35            <version>1.2.16</version>
36        </dependency>
37        <dependency>
38            <groupId>org.apache.sanselan</groupId>
39            <artifactId>sanselan</artifactId>
40            <version>0.97-incubator</version>
41        </dependency>
42        <dependency>
43            <groupId>com.drew</groupId>
44            <artifactId>metadata-extractor</artifactId>
45            <version>2.3.1</version>
46        </dependency>
47        <dependency>
48            <groupId>junit</groupId>
49            <artifactId>junit</artifactId>
50            <version>4.8.1</version>
51        </dependency>
52        <dependency>
53            <groupId>commons-beanutils</groupId>
54            <artifactId>commons-beanutils</artifactId>
55            <version>1.8.3</version>
56        </dependency>
57
58  </dependencies>
59
60  <build>
61        <plugins>
62                <plugin>
63                <artifactId>maven-assembly-plugin</artifactId>
64                <version>2.2</version>
65                <configuration>
66                  <descriptorRefs>
67                    <descriptorRef>jar-with-dependencies</descriptorRef>
68                  </descriptorRefs>
69                </configuration>
70                </plugin>
71        </plugins>
72  </build>
73</project>
Note: See TracBrowser for help on using the repository browser.