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

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

Adds spring for the dependency injection
Deletion of jdom (not useful just for a class that manipulates a simple XML file)

File size: 2.0 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.14</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>net.iharder</groupId>
20            <artifactId>filedrop</artifactId>
21            <version>1.0</version>
22        </dependency>
23        <dependency>
24            <groupId>org.swinglabs</groupId>
25            <artifactId>swingx</artifactId>
26            <version>1.6.1</version>
27        </dependency>
28        <dependency>
29            <groupId>fr.mael.jiwigo</groupId>
30            <artifactId>jiwigo-ws-api</artifactId>
31            <version>0.2b</version>
32        </dependency>
33        <dependency>
34            <groupId>org.slf4j</groupId>
35            <artifactId>slf4j-log4j12</artifactId>
36            <version>1.6.1</version>
37        </dependency>
38<!--    <dependency>-->
39<!--        <groupId>org.jdom</groupId>-->
40<!--        <artifactId>jdom</artifactId>-->
41<!--        <version>1.1</version>-->
42<!--    </dependency>-->
43        <dependency>
44            <groupId>org.springframework</groupId>
45            <artifactId>spring-beans</artifactId>
46            <version>3.0.5.RELEASE</version>
47        </dependency>
48
49  </dependencies>
50
51  <build>
52    <plugins>
53      <plugin>
54        <!-- NOTE: We don't need a groupId specification because the group is
55             org.apache.maven.plugins ...which is assumed by default.
56         -->
57        <artifactId>maven-assembly-plugin</artifactId>
58        <version>2.2-beta-5</version>
59        <configuration>
60          <descriptorRefs>
61            <descriptorRef>jar-with-dependencies</descriptorRef>
62          </descriptorRefs>
63          <archive>
64            <manifest>
65              <mainClass>fr.mael.jiwigo.Main</mainClass>
66            </manifest>
67          </archive>
68        </configuration>
69       </plugin>
70      </plugins>
71  </build>
72</project>
Note: See TracBrowser for help on using the repository browser.