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