]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached.launcher/pom.xml
Quick fixes for SEB v3.1
[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"
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</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <version>0.11.2-SNAPSHOT</version>
8 <relativePath>../org.argeo.slc</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.detached.launcher</artifactId>
11 <name>Argeo SLC Detached Launcher</name>
12 <packaging>jar</packaging>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <configuration>
19 <source>1.3</source>
20 <target>1.3</target>
21 </configuration>
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-jar-plugin</artifactId>
30 <configuration>
31 <archive>
32 <manifest>
33 <mainClass>
34 org.argeo.slc.detached.launcher.Main
35 </mainClass>
36 </manifest>
37 </archive>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-assembly-plugin</artifactId>
43 <configuration>
44 <descriptors>
45 <descriptor>src/assembly/dist.xml</descriptor>
46 </descriptors>
47 </configuration>
48 <executions>
49 <execution>
50 <id>attach-assembly</id>
51 <phase>package</phase>
52 <goals>
53 <goal>single</goal>
54 </goals>
55 </execution>
56 </executions>
57 </plugin>
58 </plugins>
59 </build>
60 <dependencies>
61 <dependency>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>org.apache.felix.main</artifactId>
64 </dependency>
65 <!-- Old -->
66 <dependency>
67 <groupId>org.springframework</groupId>
68 <artifactId>spring-context</artifactId>
69 <version>2.0.8</version>
70 </dependency>
71 <dependency>
72 <groupId>commons-logging</groupId>
73 <artifactId>commons-logging</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>log4j</groupId>
77 <artifactId>log4j</artifactId>
78 </dependency>
79
80
81 <!-- Spring -->
82 <dependency>
83 <groupId>org.springframework</groupId>
84 <artifactId>org.springframework.context</artifactId>
85 <version>2.5.6.A</version>
86 </dependency>
87
88 <dependency>
89 <groupId>commons-io</groupId>
90 <artifactId>commons-io</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.log4j</groupId>
94 <artifactId>
95 com.springsource.org.apache.log4j
96 </artifactId>
97 <version>1.2.15</version>
98 </dependency>
99 <dependency>
100 <groupId>org.apache.commons</groupId>
101 <artifactId>
102 com.springsource.org.apache.commons.logging
103 </artifactId>
104 <version>1.1.1</version>
105 </dependency>
106 <dependency>
107 <groupId>xerces</groupId>
108 <artifactId>xercesImpl</artifactId>
109 </dependency>
110 <dependency>
111 <groupId>xalan</groupId>
112 <artifactId>xalan</artifactId>
113 </dependency>
114 </dependencies>
115 <repositories>
116 <repository>
117 <id>com.springsource.repository.bundles.release</id>
118 <name>
119 SpringSource Enterprise Bundle Repository - SpringSource
120 Bundle Releases
121 </name>
122 <url>
123 http://repository.springsource.com/maven/bundles/release
124 </url>
125 </repository>
126 <repository>
127 <id>com.springsource.repository.bundles.external</id>
128 <name>
129 SpringSource Enterprise Bundle Repository - External
130 Bundle Releases
131 </name>
132 <url>
133 http://repository.springsource.com/maven/bundles/external
134 </url>
135 </repository>
136 </repositories>
137 </project>