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