]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.launcher/pom.xml
Fix remoteNotifier loop if pollEvent send error, append name to the getAttachement...
[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.runtime</groupId>
6 <artifactId>argeo-slc-runtime</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.launcher</artifactId>
11 <packaging>jar</packaging>
12 <name>Argeo 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 <Main-Class>org.argeo.slc.cli.SlcMain</Main-Class>
59 </instructions>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64 <dependencies>
65 <dependency>
66 <groupId>org.argeo.slc.runtime</groupId>
67 <artifactId>org.argeo.slc.specs</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>org.argeo.dep.osgi</groupId>
72 <artifactId>org.argeo.dep.osgi.commons.cli</artifactId>
73 </dependency>
74
75 <dependency>
76 <groupId>org.springframework</groupId>
77 <artifactId>org.springframework.context</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>org.apache.commons</groupId>
82 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.log4j</groupId>
86 <artifactId>com.springsource.org.apache.log4j</artifactId>
87 </dependency>
88
89 <dependency>
90 <groupId>org.eclipse.osgi</groupId>
91 <artifactId>org.eclipse.osgi</artifactId>
92 </dependency>
93
94 </dependencies>
95 </project>