]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/pom.xml
Bug corrections in DefaultModulesManager and ExecutionContext
[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</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.simple</artifactId>
12 <name>Argeo SLC Support Simple</name>
13 <description>Basic implementations of SLC Specifications</description>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-source-plugin</artifactId>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-surefire-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-jar-plugin</artifactId>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <version>${version.maven-bundle-plugin}</version>
36 <configuration>
37 <instructions>
38 <Export-Package>
39 org.argeo.slc.*,org.argeo.slc.core.test.spring
40 </Export-Package>
41 <Import-Package>*,org.apache.commons.logging;version="1.1",
42 org.hibernate.proxy;resolution:="optional",
43 org.dbunit;resolution:="optional",
44 org.dbunit.database;resolution:="optional",
45 org.dbunit.dataset;resolution:="optional",
46 org.dbunit.dataset.xml;resolution:="optional",
47 org.dbunit.operation;resolution:="optional"
48 </Import-Package>
49 </instructions>
50 </configuration>
51 </plugin>
52
53 </plugins>
54 </build>
55 <dependencies>
56 <dependency>
57 <groupId>org.argeo.slc.runtime</groupId>
58 <artifactId>org.argeo.slc.specs</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>org.aspectj</groupId>
63 <artifactId>com.springsource.org.aspectj.runtime</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.aspectj</groupId>
67 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>org.apache.commons</groupId>
72 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.log4j</groupId>
76 <artifactId>com.springsource.org.apache.log4j</artifactId>
77 </dependency>
78
79 <dependency>
80 <groupId>org.springframework</groupId>
81 <artifactId>org.springframework.context</artifactId>
82 </dependency>
83
84 <dependency>
85 <groupId>org.dbunit</groupId>
86 <artifactId>com.springsource.org.dbunit</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>org.junit</groupId>
90 <artifactId>com.springsource.junit</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>net.sourceforge.cglib</groupId>
94 <artifactId>com.springsource.net.sf.cglib</artifactId>
95 </dependency>
96
97 <!-- Required by DB Unit -->
98 <dependency>
99 <groupId>org.apache.commons</groupId>
100 <artifactId>com.springsource.org.apache.commons.collections</artifactId>
101 </dependency>
102
103 </dependencies>
104 </project>