]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/pom.xml
git-svn-id: https://svn.argeo.org/slc/trunk@2483 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc
[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" 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.runtime</groupId>
5 <artifactId>argeo-slc-runtime</artifactId>
6 <version>0.11.4-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.support.simple</artifactId>
10 <name>Argeo SLC Support Simple</name>
11 <description>Basic implementations of SLC Specifications</description>
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>
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 -->
43 </plugin>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <version>${version.maven-bundle-plugin}</version>
48 <configuration>
49 <instructions>
50 <Export-Package>
51 org.argeo.slc.*,org.argeo.slc.core.test.spring
52 </Export-Package>
53 <Import-Package>*,org.apache.commons.logging;version="1.1",
54 org.dbunit;resolution:="optional",
55 org.dbunit.database;resolution:="optional",
56 org.dbunit.dataset;resolution:="optional",
57 org.dbunit.dataset.xml;resolution:="optional",
58 org.dbunit.operation;resolution:="optional"
59 </Import-Package>
60 </instructions>
61 </configuration>
62 </plugin>
63
64 </plugins>
65 </build>
66 <dependencies>
67 <dependency>
68 <groupId>org.argeo.slc.runtime</groupId>
69 <artifactId>org.argeo.slc.specs</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.aspectj</groupId>
74 <artifactId>com.springsource.org.aspectj.runtime</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.aspectj</groupId>
78 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
79 </dependency>
80
81 <dependency>
82 <groupId>org.apache.commons</groupId>
83 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.log4j</groupId>
87 <artifactId>com.springsource.org.apache.log4j</artifactId>
88 </dependency>
89
90 <dependency>
91 <groupId>org.springframework</groupId>
92 <artifactId>org.springframework.context</artifactId>
93 </dependency>
94
95 <dependency>
96 <groupId>org.dbunit</groupId>
97 <artifactId>com.springsource.org.dbunit</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>org.junit</groupId>
101 <artifactId>com.springsource.junit</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>net.sourceforge.cglib</groupId>
105 <artifactId>com.springsource.net.sf.cglib</artifactId>
106 </dependency>
107
108 <!-- Required by DB Unit -->
109 <dependency>
110 <groupId>org.apache.commons</groupId>
111 <artifactId>com.springsource.org.apache.commons.collections</artifactId>
112 </dependency>
113
114 </dependencies>
115 </project>