]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.unit/pom.xml
Improve modular distributions ordering
[gpl/argeo-slc.git] / runtime / org.argeo.slc.unit / 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.11.4-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.unit</artifactId>
12 <name>Argeo SLC Unit Tests Helpers</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-source-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-surefire-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-jar-plugin</artifactId>
30 <!--
31 <executions> <execution> <goals> <goal>test-jar</goal> </goals>
32 <configuration> <archive>
33 <manifestFile>target/test-classes/META-INF/MANIFEST.MF</manifestFile>
34 </archive> </configuration> </execution> </executions>
35 -->
36 </plugin>
37 <plugin>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>maven-bundle-plugin</artifactId>
40 <version>${version.maven-bundle-plugin}</version>
41 <configuration>
42 <instructions>
43 <Export-Package>
44 org.argeo.slc.*,org.argeo.slc.core.test.spring
45 </Export-Package>
46 <Import-Package>*,org.apache.commons.logging;version="1.1",
47 org.dbunit;resolution:="optional",
48 org.dbunit.database;resolution:="optional",
49 org.dbunit.dataset;resolution:="optional",
50 org.dbunit.dataset.xml;resolution:="optional",
51 org.dbunit.operation;resolution:="optional"
52 </Import-Package>
53 </instructions>
54 </configuration>
55 </plugin>
56
57 </plugins>
58 </build>
59 <dependencies>
60 <dependency>
61 <groupId>org.argeo.slc.runtime</groupId>
62 <artifactId>org.argeo.slc.core</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.argeo.slc.runtime</groupId>
66 <artifactId>org.argeo.slc.support.simple</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.junit</groupId>
70 <artifactId>com.springsource.junit</artifactId>
71 </dependency>
72
73 <!-- DB Unit -->
74 <dependency>
75 <groupId>org.dbunit</groupId>
76 <artifactId>com.springsource.org.dbunit</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.apache.commons</groupId>
80 <artifactId>com.springsource.org.apache.commons.collections</artifactId>
81 </dependency>
82
83 <!-- Hibernate -->
84 <dependency>
85 <groupId>org.hibernate</groupId>
86 <artifactId>com.springsource.org.hibernate</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>org.springframework</groupId>
90 <artifactId>org.springframework.orm</artifactId>
91 </dependency>
92
93 <!-- OSGi -->
94 <dependency>
95 <groupId>org.argeo.slc.runtime</groupId>
96 <artifactId>org.argeo.slc.osgiboot</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>org.springframework.osgi</groupId>
100 <artifactId>org.springframework.osgi.core</artifactId>
101 </dependency>
102
103 <!-- Client -->
104 <dependency>
105 <groupId>org.argeo.slc.runtime</groupId>
106 <artifactId>org.argeo.slc.launcher</artifactId>
107 </dependency>
108 </dependencies>
109 </project>