|
Revision 9902, 1.8 KB
(checked in by mlg, 2 years ago)
|
|
Removes jdom lib and changes apache HTTPClient to the newest one
For more compatibility. I _think_ android is now compatible.
|
| 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 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | <dependencies> |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | <dependency> |
|---|
| 13 | <groupId>commons-lang</groupId> |
|---|
| 14 | <artifactId>commons-lang</artifactId> |
|---|
| 15 | <version>2.5</version> |
|---|
| 16 | </dependency> |
|---|
| 17 | <dependency> |
|---|
| 18 | <groupId>org.apache.httpcomponents</groupId> |
|---|
| 19 | <artifactId>httpclient</artifactId> |
|---|
| 20 | <version>4.1</version> |
|---|
| 21 | </dependency> |
|---|
| 22 | <dependency> |
|---|
| 23 | <groupId>commons-logging</groupId> |
|---|
| 24 | <artifactId>commons-logging</artifactId> |
|---|
| 25 | <version>1.1</version> |
|---|
| 26 | </dependency> |
|---|
| 27 | <dependency> |
|---|
| 28 | <groupId>log4j</groupId> |
|---|
| 29 | <artifactId>log4j</artifactId> |
|---|
| 30 | <version>1.2.16</version> |
|---|
| 31 | </dependency> |
|---|
| 32 | <dependency> |
|---|
| 33 | <groupId>org.apache.sanselan</groupId> |
|---|
| 34 | <artifactId>sanselan</artifactId> |
|---|
| 35 | <version>0.97-incubator</version> |
|---|
| 36 | </dependency> |
|---|
| 37 | <dependency> |
|---|
| 38 | <groupId>com.drew</groupId> |
|---|
| 39 | <artifactId>metadata-extractor</artifactId> |
|---|
| 40 | <version>2.3.1</version> |
|---|
| 41 | </dependency> |
|---|
| 42 | <dependency> |
|---|
| 43 | <groupId>junit</groupId> |
|---|
| 44 | <artifactId>junit</artifactId> |
|---|
| 45 | <version>4.8.1</version> |
|---|
| 46 | </dependency> |
|---|
| 47 | <dependency> |
|---|
| 48 | <groupId>commons-beanutils</groupId> |
|---|
| 49 | <artifactId>commons-beanutils</artifactId> |
|---|
| 50 | <version>1.8.3</version> |
|---|
| 51 | </dependency> |
|---|
| 52 | |
|---|
| 53 | </dependencies> |
|---|
| 54 | |
|---|
| 55 | <build> |
|---|
| 56 | <plugins> |
|---|
| 57 | <plugin> |
|---|
| 58 | <artifactId>maven-assembly-plugin</artifactId> |
|---|
| 59 | <version>2.2</version> |
|---|
| 60 | <configuration> |
|---|
| 61 | <descriptorRefs> |
|---|
| 62 | <descriptorRef>jar-with-dependencies</descriptorRef> |
|---|
| 63 | </descriptorRefs> |
|---|
| 64 | </configuration> |
|---|
| 65 | </plugin> |
|---|
| 66 | </plugins> |
|---|
| 67 | </build> |
|---|
| 68 | </project> |
|---|