]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/pom.xml
Optimize server start and deployment
[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</groupId>
5 <artifactId>argeo-slc</artifactId>
6 <version>0.11.3-SNAPSHOT</version>
7 <relativePath>../../org.argeo.slc</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
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 </plugin>
31 <plugin>
32 <groupId>org.apache.felix</groupId>
33 <artifactId>maven-bundle-plugin</artifactId>
34 <version>${version.maven-bundle-plugin}</version>
35 <configuration>
36 <instructions>
37 <Export-Package>
38 org.argeo.slc.*,org.argeo.slc.core.test.spring
39 </Export-Package>
40 <Import-Package>*,org.apache.commons.logging;version="1.1",
41 org.hibernate.proxy;resolution:="optional",
42 org.dbunit;resolution:="optional",
43 org.dbunit.database;resolution:="optional",
44 org.dbunit.dataset;resolution:="optional",
45 org.dbunit.dataset.xml;resolution:="optional",
46 org.dbunit.operation;resolution:="optional"
47 </Import-Package>
48 </instructions>
49 </configuration>
50 </plugin>
51
52 </plugins>
53 </build>
54 <dependencies>
55 <dependency>
56 <groupId>org.argeo.slc.runtime</groupId>
57 <artifactId>org.argeo.slc.specs</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.aspectj</groupId>
62 <artifactId>com.springsource.org.aspectj.runtime</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.aspectj</groupId>
66 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
67 </dependency>
68
69 <dependency>
70 <groupId>org.apache.commons</groupId>
71 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.apache.log4j</groupId>
75 <artifactId>com.springsource.org.apache.log4j</artifactId>
76 </dependency>
77
78 <dependency>
79 <groupId>org.springframework</groupId>
80 <artifactId>org.springframework.context</artifactId>
81 </dependency>
82
83 <dependency>
84 <groupId>org.dbunit</groupId>
85 <artifactId>com.springsource.org.dbunit</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>org.junit</groupId>
89 <artifactId>com.springsource.junit</artifactId>
90 </dependency>
91
92 <!-- Required by DB Unit -->
93 <dependency>
94 <groupId>org.apache.commons</groupId>
95 <artifactId>com.springsource.org.apache.commons.collections</artifactId>
96 </dependency>
97
98 </dependencies>
99 </project>