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