]> git.argeo.org Git - lgpl/argeo-commons.git/blob - base/runtime/org.argeo.osgi.boot/pom.xml
cdb5599bb102501b5f4a12e27628fee4f1fb19ef
[lgpl/argeo-commons.git] / base / runtime / 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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.commons.base</groupId>
7 <version>2.1.6-SNAPSHOT</version>
8 <artifactId>runtime</artifactId>
9 <relativePath>..</relativePath>
10 </parent>
11 <artifactId>org.argeo.osgi.boot</artifactId>
12 <packaging>jar</packaging>
13 <name>Commons OSGi Boot</name>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <configuration>
20 <source>1.4</source>
21 <target>1.4</target>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.felix</groupId>
26 <artifactId>maven-bundle-plugin</artifactId>
27
28 <configuration>
29 <instructions>
30 <Bundle-Activator>org.argeo.osgi.boot.Activator</Bundle-Activator>
31 <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment>
32 <Import-Package>org.eclipse.*;resolution:=optional,*</Import-Package>
33 </instructions>
34 </configuration>
35 </plugin>
36 </plugins>
37 </build>
38 <dependencies>
39 <dependency>
40 <!-- Temporary fix the OSGI boot with Rap 2.2+ : version has been uploaded
41 to 3.9.1+ that breaks JCR <version>3.9.0.v20130305-2200</version> -->
42 <groupId>org.argeo.tp.rap.addons</groupId>
43 <artifactId>org.eclipse.osgi</artifactId>
44 <version>3.9.0.v20130529-1710</version>
45 </dependency>
46
47 <!-- TEST -->
48 <dependency>
49 <groupId>org.argeo.tp</groupId>
50 <artifactId>junit</artifactId>
51 <scope>test</scope>
52 </dependency>
53 </dependencies>
54
55
56 </project>