]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.osgi/pom.xml
Fix issues with security dependencies
[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 <scope>provided</scope>
47 </dependency>
48
49 <dependency>
50 <groupId>org.springframework.osgi</groupId>
51 <artifactId>org.springframework.osgi.core</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.springframework.osgi</groupId>
56 <artifactId>org.springframework.osgi.extender</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>net.sourceforge.cglib</groupId>
61 <artifactId>com.springsource.net.sf.cglib</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.objectweb.asm</groupId>
65 <artifactId>com.springsource.org.objectweb.asm.attrs</artifactId>
66 </dependency>
67
68 <!--
69 Xalan and Xerces are implicitly required since the JDK provided
70 implementations are overridden in the execution modules manager
71 -->
72 <dependency>
73 <groupId>org.apache.xalan</groupId>
74 <artifactId>com.springsource.org.apache.xalan</artifactId>
75 </dependency>
76
77 </dependencies>
78 </project>