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