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