| 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.13</version> |
|---|
| 6 | |
|---|
| 7 | <repositories> |
|---|
| 8 | <repository> |
|---|
| 9 | <id>mael-repos</id> |
|---|
| 10 | <name>Mael Repository</name> |
|---|
| 11 | <url>http://maven.le-guevel.com/artifactory/libs-release-local/</url> |
|---|
| 12 | </repository> |
|---|
| 13 | </repositories> |
|---|
| 14 | |
|---|
| 15 | <dependencies> |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | <dependency> |
|---|
| 19 | <groupId>org.jdom</groupId> |
|---|
| 20 | <artifactId>jdom</artifactId> |
|---|
| 21 | <version>1.1</version> |
|---|
| 22 | </dependency> |
|---|
| 23 | <dependency> |
|---|
| 24 | <groupId>commons-lang</groupId> |
|---|
| 25 | <artifactId>commons-lang</artifactId> |
|---|
| 26 | <version>2.5</version> |
|---|
| 27 | </dependency> |
|---|
| 28 | <dependency> |
|---|
| 29 | <groupId>commons-httpclient</groupId> |
|---|
| 30 | <artifactId>commons-httpclient</artifactId> |
|---|
| 31 | <version>3.1</version> |
|---|
| 32 | </dependency> |
|---|
| 33 | <dependency> |
|---|
| 34 | <groupId>commons-logging</groupId> |
|---|
| 35 | <artifactId>commons-logging</artifactId> |
|---|
| 36 | <version>1.1</version> |
|---|
| 37 | </dependency> |
|---|
| 38 | <dependency> |
|---|
| 39 | <groupId>log4j</groupId> |
|---|
| 40 | <artifactId>log4j</artifactId> |
|---|
| 41 | <version>1.2.16</version> |
|---|
| 42 | </dependency> |
|---|
| 43 | <dependency> |
|---|
| 44 | <groupId>org.apache.sanselan</groupId> |
|---|
| 45 | <artifactId>sanselan</artifactId> |
|---|
| 46 | <version>0.97-incubator</version> |
|---|
| 47 | </dependency> |
|---|
| 48 | <dependency> |
|---|
| 49 | <groupId>com.drew</groupId> |
|---|
| 50 | <artifactId>metadata-extractor</artifactId> |
|---|
| 51 | <version>2.3.1</version> |
|---|
| 52 | </dependency> |
|---|
| 53 | <dependency> |
|---|
| 54 | <groupId>net.iharder</groupId> |
|---|
| 55 | <artifactId>filedrop</artifactId> |
|---|
| 56 | <version>1.0</version> |
|---|
| 57 | </dependency> |
|---|
| 58 | <dependency> |
|---|
| 59 | <groupId>junit</groupId> |
|---|
| 60 | <artifactId>junit</artifactId> |
|---|
| 61 | <version>4.8.1</version> |
|---|
| 62 | </dependency> |
|---|
| 63 | <dependency> |
|---|
| 64 | <groupId>org.swinglabs</groupId> |
|---|
| 65 | <artifactId>swingx</artifactId> |
|---|
| 66 | <version>1.6.1</version> |
|---|
| 67 | </dependency> |
|---|
| 68 | <dependency> |
|---|
| 69 | <groupId>fr.mael.jiwigo</groupId> |
|---|
| 70 | <artifactId>jiwigo-ws-api</artifactId> |
|---|
| 71 | <version>0.13</version> |
|---|
| 72 | </dependency> |
|---|
| 73 | |
|---|
| 74 | </dependencies> |
|---|
| 75 | |
|---|
| 76 | <build> |
|---|
| 77 | <plugins> |
|---|
| 78 | <plugin> |
|---|
| 79 | <!-- NOTE: We don't need a groupId specification because the group is |
|---|
| 80 | org.apache.maven.plugins ...which is assumed by default. |
|---|
| 81 | --> |
|---|
| 82 | <artifactId>maven-assembly-plugin</artifactId> |
|---|
| 83 | <version>2.2-beta-5</version> |
|---|
| 84 | <configuration> |
|---|
| 85 | <descriptorRefs> |
|---|
| 86 | <descriptorRef>jar-with-dependencies</descriptorRef> |
|---|
| 87 | </descriptorRefs> |
|---|
| 88 | <archive> |
|---|
| 89 | <manifest> |
|---|
| 90 | <mainClass>fr.mael.jiwigo.Main</mainClass> |
|---|
| 91 | </manifest> |
|---|
| 92 | </archive> |
|---|
| 93 | </configuration> |
|---|
| 94 | </plugin> |
|---|
| 95 | </plugins> |
|---|
| 96 | </build> |
|---|
| 97 | </project> |
|---|