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