]> git.argeo.org Git - lgpl/argeo-commons.git/blob - osgi/runtime/org.argeo.osgi.boot/pom.xml
Remove unused components
[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.2.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.osgi.boot.Activator</Bundle-Activator>
41 <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment>
42 </instructions>
43 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47 <dependencies>
48 <dependency>
49 <groupId>org.eclipse.osgi</groupId>
50 <artifactId>org.eclipse.osgi</artifactId>
51 </dependency>
52
53 <!-- TEST -->
54 <dependency>
55 <groupId>org.junit</groupId>
56 <artifactId>com.springsource.junit</artifactId>
57 <scope>test</scope>
58 </dependency>
59 </dependencies>
60
61
62 </project>