]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
bc01f07059bd5991fc9aac3695652b395ccea94b
[gpl/argeo-slc.git] / 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.runtime</groupId>
6 <artifactId>argeo-slc-runtime</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.support.equinox</artifactId>
11 <name>Argeo SLC Support Equinox OSGi</name>
12 <packaging>jar</packaging>
13 <properties></properties>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-jar-plugin</artifactId>
19 <executions>
20 <execution>
21 <goals>
22 <goal>test-jar</goal>
23 </goals>
24 </execution>
25 </executions>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-bundle-plugin</artifactId>
30 <version>${version.maven-bundle-plugin}</version>
31 <configuration>
32 <instructions>
33 <Export-Package>
34 org.argeo.slc.*
35 </Export-Package>
36 </instructions>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42
43
44 <dependency>
45 <groupId>org.argeo.slc.runtime</groupId>
46 <artifactId>org.argeo.slc.support.simple</artifactId>
47 </dependency>
48
49 <dependency>
50 <groupId>org.eclipse.osgi</groupId>
51 <artifactId>org.eclipse.osgi</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.springframework.osgi</groupId>
55 <artifactId>org.springframework.osgi.core</artifactId>
56 </dependency>
57
58 <dependency>
59 <groupId>org.eclipse.osgi</groupId>
60 <artifactId>org.eclipse.osgi</artifactId>
61 </dependency>
62
63 <dependency>
64 <groupId>org.springframework.osgi</groupId>
65 <artifactId>org.springframework.osgi.extender</artifactId>
66 </dependency>
67
68 <dependency>
69 <groupId>net.sourceforge.cglib</groupId>
70 <artifactId>com.springsource.net.sf.cglib</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.objectweb.asm</groupId>
74 <artifactId>com.springsource.org.objectweb.asm.attrs</artifactId>
75 </dependency>
76
77 <!-- TEST -->
78 <dependency>
79 <groupId>org.springframework.osgi</groupId>
80 <artifactId>org.springframework.osgi.test</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.argeo.slc.runtime</groupId>
85 <artifactId>org.argeo.slc.osgiboot</artifactId>
86 <scope>test</scope>
87 </dependency>
88
89 </dependencies>
90 </project>