]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.osgi/pom.xml
a34ce66ef1c3798c73968c7a10171f3eac4a6920
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.osgi / 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>runtime</artifactId>
7 <version>0.12.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.osgi</artifactId>
12 <name>SLC Support OSGi</name>
13 <packaging>jar</packaging>
14 <properties />
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-jar-plugin</artifactId>
20 </plugin>
21 <plugin>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>maven-bundle-plugin</artifactId>
24 <version>${version.maven-bundle-plugin}</version>
25 <configuration>
26 <instructions>
27 <Export-Package>
28 org.argeo.slc.*
29 </Export-Package>
30 </instructions>
31 </configuration>
32 </plugin>
33 </plugins>
34 </build>
35 <dependencies>
36
37
38 <dependency>
39 <groupId>org.argeo.slc.runtime</groupId>
40 <artifactId>org.argeo.slc.core</artifactId>
41 </dependency>
42
43 <dependency>
44 <groupId>org.eclipse.osgi</groupId>
45 <artifactId>org.eclipse.osgi</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.springframework.osgi</groupId>
49 <artifactId>org.springframework.osgi.core</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.springframework.osgi</groupId>
54 <artifactId>org.springframework.osgi.extender</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>net.sourceforge.cglib</groupId>
59 <artifactId>com.springsource.net.sf.cglib</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.objectweb.asm</groupId>
63 <artifactId>com.springsource.org.objectweb.asm.attrs</artifactId>
64 </dependency>
65
66 <dependency>
67 <groupId>org.argeo.slc.runtime</groupId>
68 <artifactId>org.argeo.slc.osgiboot</artifactId>
69 </dependency>
70
71 <!--
72 Xalan and Xerces are implicitly required since the JDK provided
73 implementations are overridden in the execution modules manager
74 -->
75 <dependency>
76 <groupId>org.apache.xalan</groupId>
77 <artifactId>com.springsource.org.apache.xalan</artifactId>
78 </dependency>
79
80 </dependencies>
81 </project>