]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/pom.xml
Rename resource set
[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" 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>0.12.2-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.support.simple</artifactId>
11 <name>SLC Support Simple</name>
12 <description>Basic implementations of SLC Specifications</description>
13 <build>
14 <resources>
15 <resource>
16 <directory>src/main/resources</directory>
17 </resource>
18 <resource>
19 <directory>.</directory>
20 <includes>
21 <include>META-INF/**</include>
22 </includes>
23 </resource>
24 </resources>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-compiler-plugin</artifactId>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-source-plugin</artifactId>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-surefire-plugin</artifactId>
37 </plugin>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-jar-plugin</artifactId>
41 <configuration>
42 <archive>
43 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
44 </archive>
45 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
50 <version>${version.maven-bundle-plugin}</version>
51 <configuration>
52 <manifestLocation>META-INF</manifestLocation>
53 <instructions>
54 <Export-Package>
55 org.argeo.slc.*,org.argeo.slc.core.test.spring
56 </Export-Package>
57 <Import-Package>*,org.apache.commons.logging;version="1.1",
58 org.dbunit;resolution:="optional",
59 org.dbunit.database;resolution:="optional",
60 org.dbunit.dataset;resolution:="optional",
61 org.dbunit.dataset.xml;resolution:="optional",
62 org.dbunit.operation;resolution:="optional",
63 junit.framework;resolution:="optional",
64 </Import-Package>
65 </instructions>
66 </configuration>
67 </plugin>
68
69 </plugins>
70 </build>
71 <dependencies>
72 <dependency>
73 <groupId>org.argeo.slc.runtime</groupId>
74 <artifactId>org.argeo.slc.core</artifactId>
75 </dependency>
76
77 <!-- SSH -->
78 <dependency>
79 <groupId>com.jcraft.jsch</groupId>
80 <artifactId>com.springsource.com.jcraft.jsch</artifactId>
81 </dependency>
82
83 <!-- Scheduling -->
84 <dependency>
85 <groupId>com.opensymphony.quartz</groupId>
86 <artifactId>com.springsource.org.quartz</artifactId>
87 </dependency>
88
89 <dependency>
90 <groupId>org.springframework</groupId>
91 <artifactId>org.springframework.context.support</artifactId>
92 </dependency>
93
94 <!-- Mail -->
95 <dependency>
96 <groupId>javax.mail</groupId>
97 <artifactId>com.springsource.javax.mail</artifactId>
98 </dependency>
99
100 <!-- SVN -->
101 <dependency>
102 <groupId>com.svnkit</groupId>
103 <artifactId>com.springsource.org.tmatesoft.svn</artifactId>
104 </dependency>
105
106 <!-- TODO: check if necessary here -->
107 <dependency>
108 <groupId>org.springframework</groupId>
109 <artifactId>org.springframework.transaction</artifactId>
110 </dependency>
111
112 <!-- Unit Tests -->
113 <dependency>
114 <groupId>org.junit</groupId>
115 <artifactId>com.springsource.junit</artifactId>
116 <scope>test</scope>
117 </dependency>
118
119 </dependencies>
120 </project>