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