]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.unit/pom.xml
SLC RAP working with UI admin
[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.13.1-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 <version>${version.slc}</version>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.slc.runtime</groupId>
45 <artifactId>org.argeo.slc.support.simple</artifactId>
46 <version>${version.slc}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.junit</groupId>
50 <artifactId>com.springsource.junit</artifactId>
51 </dependency>
52
53 <!-- DB Unit -->
54 <dependency>
55 <groupId>org.dbunit</groupId>
56 <artifactId>com.springsource.org.dbunit</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.commons</groupId>
60 <artifactId>com.springsource.org.apache.commons.collections</artifactId>
61 </dependency>
62
63 <!-- Hibernate -->
64 <dependency>
65 <groupId>org.hibernate</groupId>
66 <artifactId>com.springsource.org.hibernate</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.springframework</groupId>
70 <artifactId>org.springframework.orm</artifactId>
71 </dependency>
72
73 <!-- OSGi -->
74 <dependency>
75 <groupId>org.argeo.commons.osgi</groupId>
76 <artifactId>org.argeo.osgi.boot</artifactId>
77 <version>${version.argeo-commons}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.springframework.osgi</groupId>
81 <artifactId>org.springframework.osgi.core</artifactId>
82 </dependency>
83
84 <!-- Client -->
85 <dependency>
86 <groupId>org.argeo.slc.runtime</groupId>
87 <artifactId>org.argeo.slc.launcher</artifactId>
88 <version>${version.slc}</version>
89 </dependency>
90
91 <!-- OXM -->
92 <dependency>
93 <groupId>org.springframework.ws</groupId>
94 <artifactId>org.springframework.oxm</artifactId>
95 <optional>true</optional>
96 </dependency>
97
98 <!-- Logging -->
99 <dependency>
100 <groupId>org.slf4j</groupId>
101 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.log4j</groupId>
105 <artifactId>com.springsource.org.apache.log4j</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>org.slf4j</groupId>
109 <artifactId>com.springsource.slf4j.log4j</artifactId>
110 </dependency>
111
112 </dependencies>
113 </project>