source: extensions/jiwigo/trunk/pom.xml @ 8833

Last change on this file since 8833 was 8833, checked in by mlg, 13 years ago

Changes pom.xml
(forgotten commit)

File size: 2.8 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>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        <dependency>
58            <groupId>org.swinglabs</groupId>
59            <artifactId>swingx</artifactId>
60            <version>1.6.1</version>
61        </dependency>
62       
63  </dependencies>
64 
65  <build>
66<!--    <plugins>-->
67<!--      <plugin>-->
68<!--        <groupId>org.apache.maven.plugins</groupId>-->
69<!--        <artifactId>maven-jar-plugin</artifactId>-->
70<!--        <configuration>-->
71<!--          <archive>-->
72<!--            <manifest>-->
73<!--              <addClasspath>true</addClasspath>-->
74<!--              <mainClass>fr.mael.jiwigo.Main</mainClass>-->
75<!--            </manifest>-->
76<!--          </archive>-->
77<!--        </configuration>-->
78<!--      </plugin>-->
79<!--    </plugins>-->
80    <plugins>
81      <plugin>
82        <!-- NOTE: We don't need a groupId specification because the group is
83             org.apache.maven.plugins ...which is assumed by default.
84         -->
85        <artifactId>maven-assembly-plugin</artifactId>
86        <version>2.2-beta-5</version>
87        <configuration>
88          <descriptorRefs>
89            <descriptorRef>jar-with-dependencies</descriptorRef>
90          </descriptorRefs>
91          <archive>
92            <manifest>
93              <mainClass>fr.mael.jiwigo.Main</mainClass>
94            </manifest>
95          </archive>
96        </configuration>
97       </plugin>
98      </plugins>
99  </build>
100</project>
Note: See TracBrowser for help on using the repository browser.