]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.osgi.boot/pom.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / org.argeo.osgi.boot / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons.base</groupId>
6 <version>1.1.9-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.felix</groupId>
25 <artifactId>maven-bundle-plugin</artifactId>
26
27 <configuration>
28 <instructions>
29 <Bundle-Activator>org.argeo.osgi.boot.Activator</Bundle-Activator>
30 <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment>
31 <Import-Package>org.eclipse.*;resolution:=optional,*</Import-Package>
32 </instructions>
33 </configuration>
34 </plugin>
35 </plugins>
36 </build>
37 <dependencies>
38 <dependency>
39 <groupId>org.argeo.tp</groupId>
40 <artifactId>org.eclipse.osgi</artifactId>
41 </dependency>
42
43 <!-- TEST -->
44 <dependency>
45 <groupId>org.argeo.tp</groupId>
46 <artifactId>junit</artifactId>
47 <scope>test</scope>
48 </dependency>
49 </dependencies>
50
51
52 </project>