]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached/pom.xml
Use Equinox and Spring OSGi for SLC Detached
[gpl/argeo-slc.git] / org.argeo.slc.detached / 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.2-SNAPSHOT</version>
8 <relativePath>../org.argeo.slc</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.detached</artifactId>
11 <name>Argeo SLC Detached</name>
12 <packaging>jar</packaging>
13 <build>
14 <plugins>
15 <plugin>
16 <artifactId>maven-jar-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.felix</groupId>
20 <artifactId>maven-bundle-plugin</artifactId>
21 <configuration>
22 <instructions>
23 <Export-Package>
24 org.argeo.slc.detached.*
25 </Export-Package>
26 <Import-Package>
27 *,
28 org.springframework.beans.factory;version="2.0",
29 org.springframework.beans.factory.support;version="2.0",
30 org.springframework.beans.factory.xml;version="2.0",
31 org.springframework.context;version="2.0",
32 org.springframework.context.support;version="2.0",
33 org.springframework.core.io;version="2.0"
34 </Import-Package>
35 </instructions>
36 </configuration>
37 </plugin>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-compiler-plugin</artifactId>
41 <configuration>
42 <source>1.3</source>
43 <target>1.3</target>
44 </configuration>
45 </plugin>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-source-plugin</artifactId>
49 </plugin>
50 </plugins>
51 </build>
52 <dependencies>
53 <dependency>
54 <groupId>org.eclipse.osgi</groupId>
55 <artifactId>org.eclipse.osgi</artifactId>
56 </dependency>
57
58 <dependency>
59 <groupId>org.springframework.osgi</groupId>
60 <artifactId>org.springframework.osgi.extender</artifactId>
61 </dependency>
62
63 <!-- Required under JDK 1.4 -->
64 <dependency>
65 <groupId>edu.emory.mathcs.backport</groupId>
66 <artifactId>com.springsource.edu.emory.mathcs.backport</artifactId>
67 </dependency>
68
69
70 <!--
71 <dependency> <groupId>org.apache.xerces</groupId>
72 <artifactId>com.springsource.org.apache.xerces</artifactId>
73 </dependency>
74 -->
75
76 <dependency>
77 <groupId>org.apache.xmlcommons</groupId>
78 <artifactId>com.springsource.org.apache.xmlcommons</artifactId>
79 <scope>provided</scope>
80 </dependency>
81 <!--
82 <dependency>
83 <groupId>xml-apis</groupId>
84 <artifactId>xml-apis</artifactId>
85 <version>1.3.04</version>
86 <scope>provided</scope>
87 </dependency>
88 -->
89
90 <dependency>
91 <groupId>org.apache.commons</groupId>
92 <artifactId>
93 com.springsource.org.apache.commons.io
94 </artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.junit</groupId>
98 <artifactId>com.springsource.junit</artifactId>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.log4j</groupId>
103 <artifactId>com.springsource.org.apache.log4j</artifactId>
104 </dependency>
105 </dependencies>
106 </project>