]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/pom.xml
Move org.argeo.slc.server
[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>argeo-slc</artifactId>
7 <version>0.11.2-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.simple</artifactId>
12 <name>Argeo SLC Support Simple</name>
13 <description>Basic implementations of SLC Specifications</description>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-source-plugin</artifactId>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-surefire-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-jar-plugin</artifactId>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <configuration>
36 <instructions>
37 <Export-Package>
38 org.argeo.slc.*
39 </Export-Package>
40 <Import-Package>*,org.apache.commons.logging;version="1.1"</Import-Package>
41 </instructions>
42 </configuration>
43 </plugin>
44
45 </plugins>
46 </build>
47 <dependencies>
48 <dependency>
49 <groupId>org.argeo.slc.runtime</groupId>
50 <artifactId>org.argeo.slc.specs</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.apache.commons</groupId>
56 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.log4j</groupId>
60 <artifactId>com.springsource.org.apache.log4j</artifactId>
61 </dependency>
62
63 <dependency>
64 <groupId>org.springframework</groupId>
65 <artifactId>org.springframework.context</artifactId>
66 </dependency>
67
68 <dependency>
69 <groupId>org.dbunit</groupId>
70 <artifactId>com.springsource.org.dbunit</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.junit</groupId>
74 <artifactId>com.springsource.junit</artifactId>
75 </dependency>
76 </dependencies>
77 </project>