]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.launcher/pom.xml
Improve SSH
[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>runtime</artifactId>
7 <version>0.12.2-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.launcher</artifactId>
12 <packaging>jar</packaging>
13 <name>SLC Launcher</name>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-assembly-plugin</artifactId>
19 <configuration>
20 <descriptors>
21 <descriptor>src/assembly/base.xml</descriptor>
22 </descriptors>
23 </configuration>
24 <executions>
25 <execution>
26 <id>assembly-base</id>
27 <phase>package</phase>
28 <goals>
29 <goal>single</goal>
30 </goals>
31 </execution>
32 </executions>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>maven-bundle-plugin</artifactId>
37 <version>${version.maven-bundle-plugin}</version>
38 <configuration>
39 <instructions>
40 <Export-Package>
41 org.argeo.slc.*
42 </Export-Package>
43 <Import-Package>
44 org.w3c.dom;version="0.0.0",
45 javax.xml.*;version="0.0.0",
46 org.argeo.slc.build,
47 *
48 </Import-Package>
49 <Main-Class>org.argeo.slc.cli.SlcMain</Main-Class>
50 </instructions>
51 </configuration>
52 </plugin>
53 <plugin>
54 <artifactId>maven-resources-plugin</artifactId>
55 <executions>
56 <execution>
57 <phase>validate</phase>
58 <goals>
59 <goal>copy-resources</goal>
60 </goals>
61 <configuration>
62 <outputDirectory>${basedir}/target/base</outputDirectory>
63 <resources>
64 <resource>
65 <directory>src/main/base</directory>
66 <filtering>true</filtering>
67 </resource>
68 </resources>
69 </configuration>
70 </execution>
71 </executions>
72 </plugin>
73 </plugins>
74 </build>
75 <dependencies>
76 <dependency>
77 <groupId>org.argeo.slc.runtime</groupId>
78 <artifactId>org.argeo.slc.core</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.argeo.commons.osgi</groupId>
82 <artifactId>org.argeo.osgi.boot</artifactId>
83 </dependency>
84
85 <dependency>
86 <groupId>org.argeo.dep.osgi</groupId>
87 <artifactId>org.argeo.dep.osgi.commons.cli</artifactId>
88 </dependency>
89
90 <dependency>
91 <groupId>org.eclipse.osgi</groupId>
92 <artifactId>org.eclipse.osgi</artifactId>
93 </dependency>
94
95 <dependency>
96 <groupId>org.springframework.ws</groupId>
97 <artifactId>org.springframework.oxm</artifactId>
98 </dependency>
99
100 </dependencies>
101 </project>