]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.launcher/pom.xml
Prepare next development cycle
[gpl/argeo-slc.git] / 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" 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>0.11.5-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.launcher</artifactId>
11 <packaging>jar</packaging>
12 <name>SLC Launcher</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-jar-plugin</artifactId>
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-surefire-plugin</artifactId>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-assembly-plugin</artifactId>
34 <configuration>
35 <descriptors>
36 <descriptor>src/assembly/base.xml</descriptor>
37 </descriptors>
38 </configuration>
39 <executions>
40 <execution>
41 <id>assembly-base</id>
42 <phase>package</phase>
43 <goals>
44 <goal>single</goal>
45 </goals>
46 </execution>
47 </executions>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>maven-bundle-plugin</artifactId>
52 <version>${version.maven-bundle-plugin}</version>
53 <configuration>
54 <instructions>
55 <Export-Package>
56 org.argeo.slc.*
57 </Export-Package>
58 <Import-Package>org.w3c.dom;version="0.0.0",javax.xml.*;version="0.0.0",*</Import-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.core</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 <dependency>
77 <groupId>org.eclipse.osgi</groupId>
78 <artifactId>org.eclipse.osgi</artifactId>
79 </dependency>
80
81 <dependency>
82 <groupId>org.springframework.ws</groupId>
83 <artifactId>org.springframework.oxm</artifactId>
84 </dependency>
85
86 </dependencies>
87 </project>