]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.launcher/pom.xml
Prepare next development cycle
[gpl/argeo-slc.git] / 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.6</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
37 <configuration>
38 <instructions>
39 <Main-Class>org.argeo.slc.cli.SlcMain</Main-Class>
40 </instructions>
41 </configuration>
42 </plugin>
43 <plugin>
44 <artifactId>maven-resources-plugin</artifactId>
45 <executions>
46 <execution>
47 <phase>validate</phase>
48 <goals>
49 <goal>copy-resources</goal>
50 </goals>
51 <configuration>
52 <outputDirectory>${basedir}/target/base</outputDirectory>
53 <resources>
54 <resource>
55 <directory>src/main/base</directory>
56 <filtering>true</filtering>
57 </resource>
58 </resources>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
63 </plugins>
64 </build>
65 <dependencies>
66 <!-- SLC Agent -->
67 <dependency>
68 <groupId>org.argeo.slc</groupId>
69 <artifactId>org.argeo.slc.core</artifactId>
70 <version>1.1.6</version>
71 </dependency>
72 <dependency>
73 <groupId>org.argeo.slc</groupId>
74 <artifactId>org.argeo.slc.support.osgi</artifactId>
75 <version>1.1.6</version>
76 </dependency>
77
78 <!-- SLC Agent Modules -->
79 <dependency>
80 <groupId>org.argeo.slc</groupId>
81 <artifactId>org.argeo.slc.agent</artifactId>
82 <version>1.1.6</version>
83 </dependency>
84
85 <!-- OSGi Boot (and Equinox) -->
86 <dependency>
87 <groupId>org.argeo.commons.base</groupId>
88 <artifactId>org.argeo.osgi.boot</artifactId>
89 <version>${version.argeo-commons}</version>
90 </dependency>
91
92 <!-- Logging -->
93 <dependency>
94 <groupId>org.argeo.commons.base</groupId>
95 <artifactId>org.argeo.dep.log4j</artifactId>
96 <version>${version.argeo-commons}</version>
97 <type>pom</type>
98 </dependency>
99
100 <!-- Spring OSGi -->
101 <dependency>
102 <groupId>org.argeo.tp</groupId>
103 <artifactId>org.springframework.osgi.extender</artifactId>
104 </dependency>
105
106 <dependency>
107 <groupId>org.argeo.tp</groupId>
108 <artifactId>org.apache.commons.cli</artifactId>
109 </dependency>
110 </dependencies>
111 </project>