]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.osgiboot/pom.xml
Adapt to new versions
[gpl/argeo-slc.git] / runtime / org.argeo.slc.osgiboot / pom.xml
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.12.2-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.osgiboot</artifactId>
11 <packaging>jar</packaging>
12 <name>SLC 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 <version>${version.maven-bundle-plugin}</version>
27 <configuration>
28 <instructions>
29 <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment>
30 <Bundle-Activator>org.argeo.slc.osgiboot.Activator</Bundle-Activator>
31 </instructions>
32 </configuration>
33 </plugin>
34 </plugins>
35 </build>
36 <dependencies>
37 <dependency>
38 <groupId>org.eclipse.osgi</groupId>
39 <artifactId>org.eclipse.osgi</artifactId>
40 </dependency>
41
42 <!-- TEST -->
43 <dependency>
44 <groupId>org.junit</groupId>
45 <artifactId>com.springsource.junit</artifactId>
46 <scope>test</scope>
47 </dependency>
48 </dependencies>
49
50
51 </project>