]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.detached.launcher/pom.xml
77a008b792f7abdca8a41bb5de7cc94132b74f19
[gpl/argeo-slc.git] / runtime / org.argeo.slc.detached.launcher / 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.runtime</groupId>
5 <artifactId>argeo-slc-runtime</artifactId>
6 <version>0.11.3</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.detached.launcher</artifactId>
10 <name>Argeo 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-source-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-jar-plugin</artifactId>
29 <configuration>
30 <archive>
31 <manifest>
32 <mainClass>
33 org.argeo.slc.detached.launcher.Main
34 </mainClass>
35 </manifest>
36 </archive>
37 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>maven-bundle-plugin</artifactId>
42 <version>${version.maven-bundle-plugin}</version>
43 <configuration>
44 <instructions>
45 <Export-Package>
46 org.argeo.slc.*
47 </Export-Package>
48 </instructions>
49 </configuration>
50 </plugin>
51 <!--
52 <plugin> <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-assembly-plugin</artifactId> <configuration>
54 <descriptors> <descriptor>src/assembly/dist.xml</descriptor>
55 </descriptors> </configuration> <executions> <execution>
56 <id>attach-assembly</id> <phase>package</phase> <goals>
57 <goal>single</goal> </goals> </execution> </executions> </plugin>
58 -->
59 </plugins>
60 </build>
61 <dependencies>
62 <dependency>
63 <groupId>org.eclipse.osgi</groupId>
64 <artifactId>org.eclipse.osgi</artifactId>
65 </dependency>
66
67 <!--
68 <dependency> <groupId>org.springframework.osgi</groupId>
69 <artifactId>org.springframework.osgi.extender</artifactId>
70 </dependency> <dependency> <groupId>org.argeo.slc.runtime</groupId>
71 <artifactId>org.argeo.slc.detached</artifactId> </dependency>
72 -->
73 </dependencies>
74 </project>