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 | |
---|
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 | <dependency> |
---|
53 | <groupId>junit</groupId> |
---|
54 | <artifactId>junit</artifactId> |
---|
55 | <version>4.8.1</version> |
---|
56 | </dependency> |
---|
57 | </dependencies> |
---|
58 | |
---|
59 | <build> |
---|
60 | <!-- <plugins>--> |
---|
61 | <!-- <plugin>--> |
---|
62 | <!-- <groupId>org.apache.maven.plugins</groupId>--> |
---|
63 | <!-- <artifactId>maven-jar-plugin</artifactId>--> |
---|
64 | <!-- <configuration>--> |
---|
65 | <!-- <archive>--> |
---|
66 | <!-- <manifest>--> |
---|
67 | <!-- <addClasspath>true</addClasspath>--> |
---|
68 | <!-- <mainClass>fr.mael.jiwigo.Main</mainClass>--> |
---|
69 | <!-- </manifest>--> |
---|
70 | <!-- </archive>--> |
---|
71 | <!-- </configuration>--> |
---|
72 | <!-- </plugin>--> |
---|
73 | <!-- </plugins>--> |
---|
74 | <plugins> |
---|
75 | <plugin> |
---|
76 | <!-- NOTE: We don't need a groupId specification because the group is |
---|
77 | org.apache.maven.plugins ...which is assumed by default. |
---|
78 | --> |
---|
79 | <artifactId>maven-assembly-plugin</artifactId> |
---|
80 | <version>2.2-beta-5</version> |
---|
81 | <configuration> |
---|
82 | <descriptorRefs> |
---|
83 | <descriptorRef>jar-with-dependencies</descriptorRef> |
---|
84 | </descriptorRefs> |
---|
85 | <archive> |
---|
86 | <manifest> |
---|
87 | <mainClass>fr.mael.jiwigo.Main</mainClass> |
---|
88 | </manifest> |
---|
89 | </archive> |
---|
90 | </configuration> |
---|
91 | </plugin> |
---|
92 | </plugins> |
---|
93 | </build> |
---|
94 | </project> |
---|