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