]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.detached.launcher/pom.xml
Revert previous change
[gpl/argeo-slc.git] / runtime / org.argeo.slc.detached.launcher / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?><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>1.1.4-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.detached.launcher</artifactId>
10 <name>SLC Detached Launcher</name>
11 <packaging>jar</packaging>
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.maven.plugins</groupId>
24 <artifactId>maven-jar-plugin</artifactId>
25 <configuration>
26 <archive>
27 <manifest>
28 <mainClass>
29 org.argeo.slc.detached.launcher.Main
30 </mainClass>
31 </manifest>
32 </archive>
33 </configuration>
34 </plugin>
35 <plugin>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>maven-bundle-plugin</artifactId>
38
39 <configuration>
40 <instructions>
41 <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment>
42 <Export-Package>
43 org.argeo.slc.*
44 </Export-Package>
45 </instructions>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50 <dependencies>
51 <dependency>
52 <groupId>org.argeo.tp</groupId>
53 <artifactId>org.eclipse.osgi</artifactId>
54 </dependency>
55 </dependencies>
56 </project>