]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.ws/pom.xml
03f47a69dcbbc9aa7c392bb44d38f296cf514a10
[gpl/argeo-slc.git] / sandbox / argeo.slc.ws / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo.slc.ws</artifactId>
8 <packaging>war</packaging>
9 <version>0.1-SNAPSHOT</version>
10 <description>SLC Web Services</description>
11 <build>
12 <plugins>
13 <!--
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-eclipse-plugin</artifactId>
17 <version>2.5-SNAPSHOT</version>
18 <configuration>
19 <wtpversion>2.0</wtpversion>
20 <downloadSources>true</downloadSources>
21 <workspace>C:\mbaudier\workspace</workspace>
22 </configuration>
23 </plugin>
24 -->
25 <plugin>
26 <groupId>org.mortbay.jetty</groupId>
27 <artifactId>maven-jetty-plugin</artifactId>
28 <dependencies>
29 <dependency>
30 <groupId>org.mortbay.jetty</groupId>
31 <artifactId>jetty</artifactId>
32 <version>6.1.9</version>
33 <exclusions>
34 <exclusion>
35 <groupId>org.eclipse.jdt</groupId>
36 <artifactId>core</artifactId>
37 </exclusion>
38 </exclusions>
39
40 </dependency>
41 <dependency>
42 <groupId>org.apache.maven</groupId>
43 <artifactId>maven-project</artifactId>
44 <version>2.0.3</version>
45 <exclusions>
46 <exclusion>
47 <groupId>org.eclipse.jdt</groupId>
48 <artifactId>core</artifactId>
49 </exclusion>
50 </exclusions>
51 </dependency>
52
53 <dependency>
54 <groupId>org.apache.maven</groupId>
55 <artifactId>maven-plugin-api</artifactId>
56 <version>2.0.3</version>
57 <exclusions>
58 <exclusion>
59 <groupId>org.eclipse.jdt</groupId>
60 <artifactId>core</artifactId>
61 </exclusion>
62 </exclusions>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.maven</groupId>
66
67 <artifactId>maven-artifact</artifactId>
68 <version>2.0.3</version>
69 <exclusions>
70 <exclusion>
71 <groupId>org.eclipse.jdt</groupId>
72 <artifactId>core</artifactId>
73 </exclusion>
74 </exclusions>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.maven</groupId>
78 <artifactId>maven-plugin-tools-api</artifactId>
79 <version>2.0</version>
80 <exclusions>
81 <exclusion>
82 <groupId>org.eclipse.jdt</groupId>
83 <artifactId>core</artifactId>
84 </exclusion>
85 </exclusions>
86 </dependency>
87
88 <dependency>
89 <groupId>org.mortbay.jetty</groupId>
90 <artifactId>jetty-plus</artifactId>
91 <version>${project.version}</version>
92 <exclusions>
93 <exclusion>
94 <groupId>org.eclipse.jdt</groupId>
95 <artifactId>core</artifactId>
96 </exclusion>
97 </exclusions>
98 </dependency>
99 <dependency>
100 <groupId>org.mortbay.jetty</groupId>
101
102 <artifactId>jetty-naming</artifactId>
103 <version>6.1.9</version>
104 <exclusions>
105 <exclusion>
106 <groupId>org.eclipse.jdt</groupId>
107 <artifactId>core</artifactId>
108 </exclusion>
109 </exclusions>
110
111 </dependency>
112 <dependency>
113 <groupId>org.mortbay.jetty</groupId>
114 <artifactId>jetty-management</artifactId>
115 <version>6.1.9</version>
116 <exclusions>
117 <exclusion>
118 <groupId>org.eclipse.jdt</groupId>
119 <artifactId>core</artifactId>
120 </exclusion>
121 </exclusions>
122
123 </dependency>
124 </dependencies>
125 </plugin>
126 <plugin>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-compiler-plugin</artifactId>
129 <configuration>
130 <source>1.5</source>
131 <target>1.5</target>
132 </configuration>
133 </plugin>
134 <!--
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-dependency-plugin</artifactId>
138 <executions>
139 <execution>
140 <id>copy-dependencies</id>
141 <phase>package</phase>
142 <goals>
143 <goal>copy-dependencies</goal>
144 </goals>
145 <configuration>
146 <outputDirectory>
147 src/main/webapp/WEB-INF/lib
148 </outputDirectory>
149 </configuration>
150 </execution>
151 </executions>
152
153 </plugin>
154 -->
155 </plugins>
156 </build>
157 <dependencies>
158 <dependency>
159 <groupId>log4j</groupId>
160 <artifactId>log4j</artifactId>
161 <version>1.2.14</version>
162 </dependency>
163 <dependency>
164 <groupId>commons-logging</groupId>
165 <artifactId>commons-logging</artifactId>
166 <version>1.1.1</version>
167 </dependency>
168 <dependency>
169 <groupId>org.apache.commons</groupId>
170 <artifactId>commons-io</artifactId>
171 <version>1.3.2</version>
172 </dependency>
173 <dependency>
174 <groupId>org.springframework.ws</groupId>
175 <artifactId>spring-ws-core</artifactId>
176 <version>1.5.0</version>
177 </dependency>
178 <dependency>
179 <groupId>org.springframework.ws</groupId>
180 <artifactId>spring-oxm</artifactId>
181 <version>1.5.0</version>
182 </dependency>
183 <dependency>
184 <groupId>javax.servlet</groupId>
185 <artifactId>servlet-api</artifactId>
186 <version>2.5</version>
187 <scope>provided</scope>
188 </dependency>
189 <dependency>
190 <groupId>junit</groupId>
191 <artifactId>junit</artifactId>
192 <version>3.8.2</version>
193 </dependency>
194
195 <dependency>
196 <groupId>org.codehaus.castor</groupId>
197 <artifactId>castor</artifactId>
198 <version>1.1.2.1</version>
199 <exclusions>
200 <exclusion>
201 <groupId>xerces</groupId>
202 <artifactId>xerces</artifactId>
203 </exclusion>
204 </exclusions>
205 </dependency>
206 <dependency>
207 <groupId>xerces</groupId>
208 <artifactId>xercesImpl</artifactId>
209 <version>2.8.1</version>
210 </dependency>
211
212 <dependency>
213 <groupId>org.mortbay.jetty</groupId>
214 <artifactId>jetty</artifactId>
215 <version>6.1.9</version>
216 <exclusions>
217 <exclusion>
218 <groupId>org.eclipse.jdt</groupId>
219 <artifactId>core</artifactId>
220 </exclusion>
221 </exclusions>
222 </dependency>
223 <dependency>
224 <groupId>org.mortbay.jetty</groupId>
225 <artifactId>jetty-spring</artifactId>
226 <version>6.1.9</version>
227 <exclusions>
228 <exclusion>
229 <groupId>org.springframework</groupId>
230 <artifactId>spring</artifactId>
231 </exclusion>
232 </exclusions>
233 </dependency>
234
235
236 <dependency>
237 <groupId>org.argeo.slc</groupId>
238 <artifactId>argeo-slc-core</artifactId>
239 <version>0.9-SNAPSHOT</version>
240 </dependency>
241 </dependencies>
242 <repositories>
243 <repository>
244 <id>central</id>
245 <url>http://www.argeo.org/maven/proxy</url>
246 <releases>
247 <enabled>true</enabled>
248 <updatePolicy>daily</updatePolicy>
249 <checksumPolicy>warn</checksumPolicy>
250 </releases>
251 </repository>
252 </repositories>
253 </project>