]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.osgi.boot/pom.xml
New project conventions
[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</groupId>
6 <version>2.1.12-SNAPSHOT</version>
7 <artifactId>argeo-commons</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.felix</groupId>
17 <artifactId>maven-bundle-plugin</artifactId>
18
19 <configuration>
20 <instructions>
21 <Bundle-Activator>org.argeo.osgi.boot.Activator</Bundle-Activator>
22 <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment>
23 <Import-Package>org.eclipse.*;resolution:=optional,*</Import-Package>
24 </instructions>
25 </configuration>
26 </plugin>
27 </plugins>
28 </build>
29 <dependencies>
30 <dependency>
31 <groupId>org.argeo.tp.rap.platform</groupId>
32 <artifactId>org.eclipse.osgi</artifactId>
33 <scope>provided</scope>
34 </dependency>
35
36 <!-- TEST -->
37 <dependency>
38 <groupId>org.argeo.tp</groupId>
39 <artifactId>junit</artifactId>
40 <scope>test</scope>
41 </dependency>
42 </dependencies>
43
44
45 </project>