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