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