]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.detached.launcher/pom.xml
rename to the current namespace
[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"
2 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.slc</groupId>
6 <artifactId>runtime</artifactId>
7 <version>0.11.4-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.detached.launcher</artifactId>
12 <name>Argeo SLC Detached Launcher</name>
13 <packaging>jar</packaging>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <configuration>
20 <source>1.4</source>
21 <target>1.4</target>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-source-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-jar-plugin</artifactId>
31 <configuration>
32 <archive>
33 <manifest>
34 <mainClass>
35 org.argeo.slc.detached.launcher.Main
36 </mainClass>
37 </manifest>
38 </archive>
39 </configuration>
40 </plugin>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
44 <version>${version.maven-bundle-plugin}</version>
45 <configuration>
46 <instructions>
47 <Export-Package>
48 org.argeo.slc.*
49 </Export-Package>
50 </instructions>
51 </configuration>
52 </plugin>
53 <!--
54 <plugin> <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-assembly-plugin</artifactId> <configuration>
56 <descriptors> <descriptor>src/assembly/dist.xml</descriptor>
57 </descriptors> </configuration> <executions> <execution>
58 <id>attach-assembly</id> <phase>package</phase> <goals>
59 <goal>single</goal> </goals> </execution> </executions> </plugin>
60 -->
61 </plugins>
62 </build>
63 <dependencies>
64 <dependency>
65 <groupId>org.eclipse.osgi</groupId>
66 <artifactId>org.eclipse.osgi</artifactId>
67 </dependency>
68
69 <!--
70 <dependency> <groupId>org.springframework.osgi</groupId>
71 <artifactId>org.springframework.osgi.extender</artifactId>
72 </dependency> <dependency> <groupId>org.argeo.slc.runtime</groupId>
73 <artifactId>org.argeo.slc.detached</artifactId> </dependency>
74 -->
75 </dependencies>
76 </project>