]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
b0d2027eadddc3589a5efbfbe08f5e4ed0a90c16
[gpl/argeo-slc.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../org.argeo.slc</relativePath>
9 </parent>
10 <artifactId>argeo-slc-dist</artifactId>
11 <name>Argeo SLC Dist</name>
12 <packaging>pom</packaging>
13 <description />
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-assembly-plugin</artifactId>
19 <configuration>
20 <descriptors>
21 <descriptor>src/assembly/dist.xml</descriptor>
22 </descriptors>
23 </configuration>
24 <executions>
25 <execution>
26 <id>attach-assembly</id>
27 <phase>package</phase>
28 <goals>
29 <goal>single</goal>
30 </goals>
31 </execution>
32 </executions>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-dependency-plugin</artifactId>
37 <configuration>
38 <overWriteReleases>false</overWriteReleases>
39 <overWriteSnapshots>false</overWriteSnapshots>
40 <overWriteIfNewer>true</overWriteIfNewer>
41 <outputDirectory>${project.build.directory}/p2Repository/plugins</outputDirectory>
42 </configuration>
43 </plugin>
44
45 </plugins>
46 </build>
47 <dependencies>
48 <dependency>
49 <groupId>org.argeo.slc.runtime</groupId>
50 <artifactId>org.argeo.slc.launcher</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.argeo.slc.runtime</groupId>
54 <artifactId>org.argeo.slc.server</artifactId>
55 </dependency>
56
57 <!-- Additional SLC dependencies -->
58 <dependency>
59 <groupId>org.argeo.slc.runtime</groupId>
60 <artifactId>org.argeo.slc.launcher</artifactId>
61 <type>tar.gz</type>
62 <classifier>base</classifier>
63 </dependency>
64
65 <dependency>
66 <groupId>org.argeo.slc</groupId>
67 <artifactId>org.argeo.slc.detached.launcher</artifactId>
68 <type>tar.gz</type>
69 <classifier>dist</classifier>
70 </dependency>
71
72 <dependency>
73 <groupId>org.argeo.dep.jemmy</groupId>
74 <artifactId>org.argeo.dep.jemmy.nb61</artifactId>
75 </dependency>
76
77 <!--
78 Artifacts below are required for consistency of the P2 repository
79 -->
80
81 <!-- Required by SOAP and Web Services -->
82 <dependency>
83 <groupId>javax.activation</groupId>
84 <artifactId>com.springsource.javax.activation</artifactId>
85 </dependency>
86 <!-- Required by Xerces -->
87 <dependency>
88 <groupId>org.apache.xmlcommons</groupId>
89 <artifactId>com.springsource.org.apache.xmlcommons</artifactId>
90 </dependency>
91 <!-- Required by DB unit -->
92 <dependency>
93 <groupId>org.apache.commons</groupId>
94 <artifactId>com.springsource.org.apache.commons.collections</artifactId>
95 </dependency>
96 <!-- Required by JSP -->
97 <dependency>
98 <groupId>javax.servlet</groupId>
99 <artifactId>com.springsource.javax.servlet.jsp</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>javax.el</groupId>
103 <artifactId>com.springsource.javax.el</artifactId>
104 </dependency>
105
106
107 <!--
108 Additional Third Parties <dependency>
109 <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId>
110 </dependency> <dependency> <groupId>mysql</groupId>
111 <artifactId>mysql-connector-java</artifactId> </dependency>
112 <dependency> <groupId>hsqldb</groupId>
113 <artifactId>hsqldb</artifactId> </dependency>
114 -->
115 <!--
116 Required by FTP Ant task <dependency> <groupId>commons-net</groupId>
117 <artifactId>commons-net</artifactId> </dependency> <dependency>
118 <groupId>oro</groupId> <artifactId>oro</artifactId> </dependency>
119 -->
120 </dependencies>
121 </project>