|
Revision 6959, 1.5 KB
(checked in by mlg, 3 years ago)
|
|
Added a managed preference :
the ability for the user to choose the image quality (the gui is not currently done, so it is not usable)
|
| 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>Jiwigo</groupId> |
|---|
| 4 | <artifactId>Jiwigo</artifactId> |
|---|
| 5 | <version>0.0.1-SNAPSHOT</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>net.iharder</groupId> |
|---|
| 49 | <artifactId>filedrop</artifactId> |
|---|
| 50 | <version>1.0</version> |
|---|
| 51 | </dependency> |
|---|
| 52 | |
|---|
| 53 | |
|---|
| 54 | </dependencies> |
|---|
| 55 | </project> |
|---|