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

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

Adds junit libs
test scope

File size: 2.2 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.3.0</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        <dependency>
49            <groupId>junit</groupId>
50            <artifactId>junit</artifactId>
51            <version>4.8.2</version>
52            <scope>test</scope>
53        </dependency>
54  </dependencies>
55
56  <build>
57    <plugins>
58      <plugin>
59        <!-- NOTE: We don't need a groupId specification because the group is
60             org.apache.maven.plugins ...which is assumed by default.
61         -->
62        <artifactId>maven-assembly-plugin</artifactId>
63        <version>2.2-beta-5</version>
64        <configuration>
65          <descriptorRefs>
66            <descriptorRef>jar-with-dependencies</descriptorRef>
67          </descriptorRefs>
68          <archive>
69            <manifest>
70              <mainClass>fr.mael.jiwigo.Main</mainClass>
71            </manifest>
72          </archive>
73        </configuration>
74       </plugin>
75      </plugins>
76  </build>
77</project>
Note: See TracBrowser for help on using the repository browser.