]> git.argeo.org Git - lgpl/argeo-commons.git/blob - osgi/runtime/org.argeo.osgi.boot/pom.xml
Remove XML and ZIP indexing from WebDav config
[lgpl/argeo-commons.git] / osgi / runtime / org.argeo.osgi.boot / 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.commons.osgi</groupId>
5 <version>0.3.4-SNAPSHOT</version>
6 <artifactId>runtime</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.osgi.boot</artifactId>
10 <packaging>jar</packaging>
11 <name>Commons OSGi Boot</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <configuration>
18 <source>1.4</source>
19 <target>1.4</target>
20 </configuration>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>maven-bundle-plugin</artifactId>
25 <version>${version.maven-bundle-plugin}</version>
26 <configuration>
27 <instructions>
28 <Bundle-Activator>org.argeo.osgi.boot.Activator</Bundle-Activator>
29 <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment>
30 </instructions>
31 </configuration>
32 </plugin>
33 </plugins>
34 </build>
35 <dependencies>
36 <dependency>
37 <groupId>org.eclipse.osgi</groupId>
38 <artifactId>org.eclipse.osgi</artifactId>
39 </dependency>
40
41 <!-- TEST -->
42 <dependency>
43 <groupId>org.junit</groupId>
44 <artifactId>com.springsource.junit</artifactId>
45 <scope>test</scope>
46 </dependency>
47 </dependencies>
48
49
50 </project>