]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/pom.xml
Remove dependencies to ant
[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.runtime</groupId>
6 <artifactId>argeo-slc-runtime</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.support.simple</artifactId>
11 <name>Argeo SLC Support Simple</name>
12 <description>Basic implementations of SLC Specifications</description>
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 <executions>
31 <execution>
32 <goals>
33 <goal>test-jar</goal>
34 </goals>
35 <configuration>
36 <archive>
37 <manifestFile>target/test-classes/META-INF/MANIFEST.MF</manifestFile>
38 </archive>
39 </configuration>
40 </execution>
41 </executions>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
46 <version>${version.maven-bundle-plugin}</version>
47 <configuration>
48 <instructions>
49 <Export-Package>
50 org.argeo.slc.*,org.argeo.slc.core.test.spring
51 </Export-Package>
52 <Import-Package>*,org.apache.commons.logging;version="1.1",
53 org.dbunit;resolution:="optional",
54 org.dbunit.database;resolution:="optional",
55 org.dbunit.dataset;resolution:="optional",
56 org.dbunit.dataset.xml;resolution:="optional",
57 org.dbunit.operation;resolution:="optional"
58 </Import-Package>
59 </instructions>
60 </configuration>
61 </plugin>
62
63 </plugins>
64 </build>
65 <dependencies>
66 <dependency>
67 <groupId>org.argeo.slc.runtime</groupId>
68 <artifactId>org.argeo.slc.specs</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.aspectj</groupId>
73 <artifactId>com.springsource.org.aspectj.runtime</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.aspectj</groupId>
77 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>org.apache.commons</groupId>
82 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.log4j</groupId>
86 <artifactId>com.springsource.org.apache.log4j</artifactId>
87 </dependency>
88
89 <dependency>
90 <groupId>org.springframework</groupId>
91 <artifactId>org.springframework.context</artifactId>
92 </dependency>
93
94 <dependency>
95 <groupId>org.dbunit</groupId>
96 <artifactId>com.springsource.org.dbunit</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>org.junit</groupId>
100 <artifactId>com.springsource.junit</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>net.sourceforge.cglib</groupId>
104 <artifactId>com.springsource.net.sf.cglib</artifactId>
105 </dependency>
106
107 <!-- Required by DB Unit -->
108 <dependency>
109 <groupId>org.apache.commons</groupId>
110 <artifactId>com.springsource.org.apache.commons.collections</artifactId>
111 </dependency>
112
113 </dependencies>
114 </project>