]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.osgi/pom.xml
remove warning
[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" 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>0.13.0-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 <version>${version.maven-bundle-plugin}</version>
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 </dependency>
35
36 <dependency>
37 <groupId>org.eclipse.osgi</groupId>
38 <artifactId>org.eclipse.osgi</artifactId>
39 <scope>provided</scope>
40 </dependency>
41
42 <dependency>
43 <groupId>org.springframework.osgi</groupId>
44 <artifactId>org.springframework.osgi.core</artifactId>
45 </dependency>
46
47 <dependency>
48 <groupId>org.springframework.osgi</groupId>
49 <artifactId>org.springframework.osgi.extender</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.springframework.osgi</groupId>
54 <artifactId>org.springframework.osgi.web</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 <!--
67 Xalan and Xerces are implicitly required since the JDK provided
68 implementations are overridden in the execution modules manager
69 -->
70 <dependency>
71 <groupId>org.apache.xalan</groupId>
72 <artifactId>com.springsource.org.apache.xalan</artifactId>
73 </dependency>
74
75 </dependencies>
76 </project>