]> git.argeo.org Git - lgpl/argeo-commons.git/blob - osgi/runtime/org.argeo.osgi.boot/pom.xml
Fixes on natures management
[lgpl/argeo-commons.git] / osgi / runtime / org.argeo.osgi.boot / 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.commons.osgi</groupId>
5 <version>0.1.3-SNAPSHOT</version>
6 <artifactId>runtime</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.osgi.boot</artifactId>
10 <packaging>jar</packaging>
11 <name>Commons OSGi Boot</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <configuration>
18 <source>1.4</source>
19 <target>1.4</target>
20 </configuration>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-jar-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-source-plugin</artifactId>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-surefire-plugin</artifactId>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>maven-bundle-plugin</artifactId>
37 <version>${version.maven-bundle-plugin}</version>
38 <configuration>
39 <instructions>
40 <Bundle-Activator>org.argeo.slc.osgiboot.Activator</Bundle-Activator>
41 </instructions>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46 <dependencies>
47 <dependency>
48 <groupId>org.eclipse.osgi</groupId>
49 <artifactId>org.eclipse.osgi</artifactId>
50 </dependency>
51
52 <!-- TEST -->
53 <dependency>
54 <groupId>org.junit</groupId>
55 <artifactId>com.springsource.junit</artifactId>
56 <scope>test</scope>
57 </dependency>
58 </dependencies>
59
60
61 </project>