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