]> git.argeo.org Git - lgpl/argeo-commons.git/blob - osgi/runtime/org.argeo.osgi.boot/pom.xml
fix bug 85 : JCR explorer refresh was not implemented for TreeParent objects of type...
[lgpl/argeo-commons.git] / osgi / 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.osgi</groupId>
7 <version>1.1.3-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 <groupId>org.argeo.tp</groupId>
41 <artifactId>org.eclipse.osgi</artifactId>
42 </dependency>
43
44 <!-- TEST -->
45 <dependency>
46 <groupId>org.argeo.tp</groupId>
47 <artifactId>junit</artifactId>
48 <scope>test</scope>
49 </dependency>
50 </dependencies>
51
52
53 </project>