]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.launcher/pom.xml
fix bug on status comparison
[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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>runtime</artifactId>
8 <version>1.1.12-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
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-assembly-plugin</artifactId>
19 <configuration>
20 <descriptors>
21 <descriptor>src/assembly/base.xml</descriptor>
22 </descriptors>
23 </configuration>
24 <executions>
25 <execution>
26 <id>assembly-base</id>
27 <phase>package</phase>
28 <goals>
29 <goal>single</goal>
30 </goals>
31 </execution>
32 </executions>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>maven-bundle-plugin</artifactId>
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 <dependency>
67 <groupId>org.argeo.commons.base</groupId>
68 <artifactId>org.argeo.osgi.boot</artifactId>
69 <version>${version.argeo-commons}</version>
70 </dependency>
71 </dependencies>
72 </project>