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