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