]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.support.simple/pom.xml
Prepare next development cycle
[gpl/argeo-slc.git] / 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.19-SNAPSHOT</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.19-SNAPSHOT</version>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.commons.server</groupId>
45 <artifactId>org.argeo.server.jcr</artifactId>
46 <version>${version.argeo-commons}</version>
47 </dependency>
48
49 <!-- SSH -->
50 <dependency>
51 <groupId>org.argeo.tp</groupId>
52 <artifactId>com.jcraft.jsch</artifactId>
53 </dependency>
54
55 <!-- Scheduling -->
56 <dependency>
57 <groupId>org.argeo.tp</groupId>
58 <artifactId>org.quartz</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>org.argeo.tp</groupId>
63 <artifactId>org.springframework.context.support</artifactId>
64 </dependency>
65
66 <!-- Mail -->
67 <dependency>
68 <groupId>org.argeo.tp</groupId>
69 <artifactId>javax.mail</artifactId>
70 </dependency>
71
72 <!-- SVN -->
73 <dependency>
74 <groupId>org.argeo.tp</groupId>
75 <artifactId>org.tmatesoft.svn</artifactId>
76 </dependency>
77
78 <!-- Commons -->
79 <dependency>
80 <groupId>org.argeo.tp</groupId>
81 <artifactId>org.apache.commons.vfs</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.argeo.tp</groupId>
85 <artifactId>org.apache.commons.exec</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>