]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/pom.xml
SLC RAP working with UI admin
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / 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>runtime</artifactId>
7 <version>0.13.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.simple</artifactId>
12 <name>SLC Support Simple</name>
13 <description>Basic implementations of SLC Specifications</description>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.felix</groupId>
18 <artifactId>maven-bundle-plugin</artifactId>
19 <version>${version.maven-bundle-plugin}</version>
20 <configuration>
21 <instructions>
22 <Export-Package>
23 org.argeo.slc.*,org.argeo.slc.core.test.spring
24 </Export-Package>
25 <Import-Package>*,org.apache.commons.logging;version="1.1",
26 org.dbunit;resolution:="optional",
27 org.dbunit.database;resolution:="optional",
28 org.dbunit.dataset;resolution:="optional",
29 org.dbunit.dataset.xml;resolution:="optional",
30 org.dbunit.operation;resolution:="optional",
31 junit.framework;resolution:="optional",
32 org.apache.commons.vfs.*,
33 javax.swing.plaf.metal
34 </Import-Package>
35 </instructions>
36 </configuration>
37 </plugin>
38
39 </plugins>
40 </build>
41 <dependencies>
42 <dependency>
43 <groupId>org.argeo.slc.runtime</groupId>
44 <artifactId>org.argeo.slc.core</artifactId>
45 <version>${version.slc}</version>
46 </dependency>
47
48 <!-- SSH -->
49 <dependency>
50 <groupId>com.jcraft.jsch</groupId>
51 <artifactId>com.springsource.com.jcraft.jsch</artifactId>
52 </dependency>
53
54 <!-- Scheduling -->
55 <dependency>
56 <groupId>com.opensymphony.quartz</groupId>
57 <artifactId>com.springsource.org.quartz</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.springframework</groupId>
62 <artifactId>org.springframework.context.support</artifactId>
63 </dependency>
64
65 <!-- Mail -->
66 <dependency>
67 <groupId>javax.mail</groupId>
68 <artifactId>com.springsource.javax.mail</artifactId>
69 </dependency>
70
71 <!-- SVN -->
72 <dependency>
73 <groupId>com.svnkit</groupId>
74 <artifactId>com.springsource.org.tmatesoft.svn</artifactId>
75 </dependency>
76
77 <!-- Commons VFS -->
78 <dependency>
79 <groupId>org.apache.commons</groupId>
80 <artifactId>com.springsource.org.apache.commons.vfs</artifactId>
81 </dependency>
82
83 <dependency>
84 <groupId>org.argeo.dep.osgi</groupId>
85 <artifactId>org.redline_rpm</artifactId>
86 </dependency>
87
88 <!-- TODO: check if necessary here -->
89 <dependency>
90 <groupId>org.springframework</groupId>
91 <artifactId>org.springframework.transaction</artifactId>
92 </dependency>
93
94 <!-- Unit Tests -->
95 <dependency>
96 <groupId>org.junit</groupId>
97 <artifactId>com.springsource.junit</artifactId>
98 <scope>test</scope>
99 </dependency>
100
101 </dependencies>
102 </project>