]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.launcher/pom.xml
Write a long expression to avoid regexp collision and full copy of qx folder...
[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.11.4-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>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 <Import-Package>org.w3c.dom;version="0.0.0",javax.xml.*;version="0.0.0",*</Import-Package>
60 <Main-Class>org.argeo.slc.cli.SlcMain</Main-Class>
61 </instructions>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66 <dependencies>
67 <dependency>
68 <groupId>org.argeo.slc.runtime</groupId>
69 <artifactId>org.argeo.slc.core</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.argeo.dep.osgi</groupId>
74 <artifactId>org.argeo.dep.osgi.commons.cli</artifactId>
75 </dependency>
76
77 <dependency>
78 <groupId>org.eclipse.osgi</groupId>
79 <artifactId>org.eclipse.osgi</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>org.springframework.ws</groupId>
84 <artifactId>org.springframework.oxm</artifactId>
85 </dependency>
86
87 </dependencies>
88 </project>