]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.equinox/pom.xml
Add CPD report
[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</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.equinox</artifactId>
11 <name>Argeo SLC Support Equinox 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 <executions>
20 <execution>
21 <goals>
22 <goal>test-jar</goal>
23 </goals>
24 <configuration>
25 <archive>
26 <manifestFile>src/test/resources/META-INF/MANIFEST.MF</manifestFile>
27 </archive>
28 </configuration>
29 </execution>
30 </executions>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <version>${version.maven-bundle-plugin}</version>
36 <configuration>
37 <instructions>
38 <Export-Package>
39 org.argeo.slc.*
40 </Export-Package>
41 </instructions>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46 <dependencies>
47
48
49 <dependency>
50 <groupId>org.argeo.slc.runtime</groupId>
51 <artifactId>org.argeo.slc.support.simple</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.eclipse.osgi</groupId>
56 <artifactId>org.eclipse.osgi</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.springframework.osgi</groupId>
60 <artifactId>org.springframework.osgi.core</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 <dependency>
78 <groupId>org.argeo.slc.runtime</groupId>
79 <artifactId>org.argeo.slc.osgiboot</artifactId>
80 </dependency>
81
82 </dependencies>
83 </project>