]> git.argeo.org Git - lgpl/argeo-commons.git/blob - base/runtime/org.argeo.osgi.boot/pom.xml
8117d1873deab4e9446594acc2523fc9f2e980c1
[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" 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>2.1.8-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 <!-- Temporary fix the OSGI boot with Rap 2.2+ : version has been uploaded
40 to 3.9.1+ that breaks JCR <version>3.9.0.v20130305-2200</version> -->
41 <groupId>org.argeo.tp.rap.addons</groupId>
42 <artifactId>org.eclipse.osgi</artifactId>
43 <version>3.9.0.v20130529-1710</version>
44 </dependency>
45
46 <!-- TEST -->
47 <dependency>
48 <groupId>org.argeo.tp</groupId>
49 <artifactId>junit</artifactId>
50 <scope>test</scope>
51 </dependency>
52 </dependencies>
53
54
55 </project>