]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
8a04b7ae0b535d517845a9f42a1ca8c1d670ce42
[gpl/argeo-slc.git] / 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.runtime</groupId>
5 <artifactId>argeo-slc-runtime</artifactId>
6 <version>0.11.3</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.launcher</artifactId>
10 <packaging>jar</packaging>
11 <name>Argeo SLC Launcher</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-jar-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-source-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-surefire-plugin</artifactId>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-assembly-plugin</artifactId>
33 <configuration>
34 <descriptors>
35 <descriptor>src/assembly/base.xml</descriptor>
36 </descriptors>
37 </configuration>
38 <executions>
39 <execution>
40 <id>assembly-base</id>
41 <phase>package</phase>
42 <goals>
43 <goal>single</goal>
44 </goals>
45 </execution>
46 </executions>
47 </plugin>
48 <plugin>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>maven-bundle-plugin</artifactId>
51 <version>${version.maven-bundle-plugin}</version>
52 <configuration>
53 <instructions>
54 <Export-Package>
55 org.argeo.slc.*
56 </Export-Package>
57 <Main-Class>org.argeo.slc.cli.SlcMain</Main-Class>
58 </instructions>
59 </configuration>
60 </plugin>
61 </plugins>
62 </build>
63 <dependencies>
64 <dependency>
65 <groupId>org.argeo.slc.runtime</groupId>
66 <artifactId>org.argeo.slc.specs</artifactId>
67 </dependency>
68
69 <dependency>
70 <groupId>org.argeo.dep.osgi</groupId>
71 <artifactId>org.argeo.dep.osgi.commons.cli</artifactId>
72 </dependency>
73
74 <dependency>
75 <groupId>org.springframework</groupId>
76 <artifactId>org.springframework.context</artifactId>
77 </dependency>
78
79 <dependency>
80 <groupId>org.apache.commons</groupId>
81 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.apache.log4j</groupId>
85 <artifactId>com.springsource.org.apache.log4j</artifactId>
86 </dependency>
87
88 <dependency>
89 <groupId>org.eclipse.osgi</groupId>
90 <artifactId>org.eclipse.osgi</artifactId>
91 </dependency>
92
93 </dependencies>
94 </project>