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

Last change on this file since 10494 was 10494, checked in by anthony43, 13 years ago

addSimple ws api method added, with unit tests
http://piwigo.org/doc/doku.php?id=en:dev:webapi:pwg.images.addsimple
pom upgraded to 0.3.0-SNAPSHOT since this is a minor change, and also a dependency was added (httpmime)
SessionManagerImpl was modified to make available its httpclient.

File size: 1.6 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.3.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        </plugins>
59  </build>
60</project>
Note: See TracBrowser for help on using the repository browser.