]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.osgi/pom.xml
Remove warnings
[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.11.4-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.support.osgi</artifactId>
11 <name>Argeo SLC Support OSGi</name>
12 <packaging>jar</packaging>
13 <properties />
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-jar-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>maven-bundle-plugin</artifactId>
23 <version>${version.maven-bundle-plugin}</version>
24 <configuration>
25 <instructions>
26 <Export-Package>
27 org.argeo.slc.*
28 </Export-Package>
29 </instructions>
30 </configuration>
31 </plugin>
32 </plugins>
33 </build>
34 <dependencies>
35
36
37 <dependency>
38 <groupId>org.argeo.slc.runtime</groupId>
39 <artifactId>org.argeo.slc.core</artifactId>
40 </dependency>
41
42 <dependency>
43 <groupId>org.eclipse.osgi</groupId>
44 <artifactId>org.eclipse.osgi</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.springframework.osgi</groupId>
48 <artifactId>org.springframework.osgi.core</artifactId>
49 </dependency>
50
51 <dependency>
52 <groupId>org.springframework.osgi</groupId>
53 <artifactId>org.springframework.osgi.extender</artifactId>
54 </dependency>
55
56 <dependency>
57 <groupId>net.sourceforge.cglib</groupId>
58 <artifactId>com.springsource.net.sf.cglib</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.objectweb.asm</groupId>
62 <artifactId>com.springsource.org.objectweb.asm.attrs</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>org.argeo.slc.runtime</groupId>
67 <artifactId>org.argeo.slc.osgiboot</artifactId>
68 </dependency>
69
70 </dependencies>
71 </project>