]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.launcher/pom.xml
Introduce SLC Execution
[gpl/argeo-slc.git] / runtime / org.argeo.slc.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>argeo-slc</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.launcher</artifactId>
12 <packaging>jar</packaging>
13 <name>Argeo SLC Launcher</name>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-jar-plugin</artifactId>
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-surefire-plugin</artifactId>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-assembly-plugin</artifactId>
35 <configuration>
36 <descriptors>
37 <descriptor>src/assembly/base.xml</descriptor>
38 </descriptors>
39 </configuration>
40 <executions>
41 <execution>
42 <id>assembly-base</id>
43 <phase>package</phase>
44 <goals>
45 <goal>single</goal>
46 </goals>
47 </execution>
48 </executions>
49 </plugin>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
53 <version>${version.maven-bundle-plugin}</version>
54 <configuration>
55 <instructions>
56 <Export-Package>
57 org.argeo.slc.*
58 </Export-Package>
59 <Main-Class>org.argeo.slc.cli.SlcMain</Main-Class>
60 </instructions>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65 <dependencies>
66 <dependency>
67 <groupId>org.argeo.slc.runtime</groupId>
68 <artifactId>org.argeo.slc.support.simple</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.argeo.dep.osgi</groupId>
73 <artifactId>org.argeo.dep.osgi.commons.cli</artifactId>
74 </dependency>
75
76 </dependencies>
77 </project>