]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.launcher/pom.xml
Release refactored SLC IDE feature
[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.1-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-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 <plugin>
65 <artifactId>maven-resources-plugin</artifactId>
66 <executions>
67 <execution>
68 <phase>validate</phase>
69 <goals>
70 <goal>copy-resources</goal>
71 </goals>
72 <configuration>
73 <outputDirectory>${basedir}/target/base</outputDirectory>
74 <resources>
75 <resource>
76 <directory>src/main/base</directory>
77 <filtering>true</filtering>
78 </resource>
79 </resources>
80 </configuration>
81 </execution>
82 </executions>
83 </plugin>
84 </plugins>
85 </build>
86 <dependencies>
87 <dependency>
88 <groupId>org.argeo.slc.runtime</groupId>
89 <artifactId>org.argeo.slc.core</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.argeo.commons.osgi</groupId>
93 <artifactId>org.argeo.osgi.boot</artifactId>
94 </dependency>
95
96 <dependency>
97 <groupId>org.argeo.dep.osgi</groupId>
98 <artifactId>org.argeo.dep.osgi.commons.cli</artifactId>
99 </dependency>
100
101 <dependency>
102 <groupId>org.eclipse.osgi</groupId>
103 <artifactId>org.eclipse.osgi</artifactId>
104 </dependency>
105
106 <dependency>
107 <groupId>org.springframework.ws</groupId>
108 <artifactId>org.springframework.oxm</artifactId>
109 </dependency>
110
111 </dependencies>
112 </project>