]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached.launcher/pom.xml
Start introducing OSGi commands
[gpl/argeo-slc.git] / org.argeo.slc.detached.launcher / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 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>argeo-slc</artifactId>
8 <version>0.11.1-SNAPSHOT</version>
9 <relativePath>../org.argeo.slc</relativePath>
10 </parent>
11 <artifactId>org.argeo.slc.detached.launcher</artifactId>
12 <name>Argeo SLC Detached Launcher</name>
13 <packaging>jar</packaging>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <configuration>
20 <source>1.3</source>
21 <target>1.3</target>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-source-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-jar-plugin</artifactId>
31 <configuration>
32 <archive>
33 <manifest>
34 <mainClass>
35 org.argeo.slc.detached.launcher.Main
36 </mainClass>
37 </manifest>
38 </archive>
39 </configuration>
40 </plugin>
41 <plugin>
42 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-assembly-plugin</artifactId>
44 <configuration>
45 <descriptors>
46 <descriptor>src/assembly/dist.xml</descriptor>
47 </descriptors>
48 </configuration>
49 <executions>
50 <execution>
51 <id>attach-assembly</id>
52 <phase>package</phase>
53 <goals>
54 <goal>single</goal>
55 </goals>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 </build>
61 <dependencies>
62 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.apache.felix.main</artifactId>
65 </dependency>
66 <!-- Spring -->
67 <dependency>
68 <groupId>org.springframework</groupId>
69 <artifactId>spring-context</artifactId>
70 <version>2.0.8</version>
71 </dependency>
72
73 <dependency>
74 <groupId>commons-io</groupId>
75 <artifactId>commons-io</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>commons-logging</groupId>
79 <artifactId>commons-logging</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>xerces</groupId>
83 <artifactId>xercesImpl</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>log4j</groupId>
87 <artifactId>log4j</artifactId>
88 </dependency>
89 </dependencies>
90 </project>