]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.launcher/pom.xml
Working generic RPM Factory
[gpl/argeo-slc.git] / runtime / org.argeo.slc.launcher / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>runtime</artifactId>
7 <version>1.1.13-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
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 <configuration>
37 <instructions>
38 <Main-Class>org.argeo.slc.cli.SlcMain</Main-Class>
39 </instructions>
40 </configuration>
41 </plugin>
42 <plugin>
43 <artifactId>maven-resources-plugin</artifactId>
44 <executions>
45 <execution>
46 <phase>validate</phase>
47 <goals>
48 <goal>copy-resources</goal>
49 </goals>
50 <configuration>
51 <outputDirectory>${basedir}/target/base</outputDirectory>
52 <resources>
53 <resource>
54 <directory>src/main/base</directory>
55 <filtering>true</filtering>
56 </resource>
57 </resources>
58 </configuration>
59 </execution>
60 </executions>
61 </plugin>
62 </plugins>
63 </build>
64 <dependencies>
65 <dependency>
66 <groupId>org.argeo.commons.base</groupId>
67 <artifactId>org.argeo.osgi.boot</artifactId>
68 <version>${version.argeo-commons}</version>
69 </dependency>
70 </dependencies>
71 </project>