]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.ws/pom.xml
Update version flag
[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 <version>0.9-SNAPSHOT</version>
9 <packaging>jar</packaging>
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 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-compiler-plugin</artifactId>
32 <configuration>
33 <source>1.5</source>
34 <target>1.5</target>
35 </configuration>
36 </plugin>
37 <!--
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-dependency-plugin</artifactId>
41 <executions>
42 <execution>
43 <id>copy-dependencies</id>
44 <phase>package</phase>
45 <goals>
46 <goal>copy-dependencies</goal>
47 </goals>
48 <configuration>
49 <outputDirectory>
50 src/main/webapp/WEB-INF/lib
51 </outputDirectory>
52 </configuration>
53 </execution>
54 </executions>
55
56 </plugin>
57 -->
58 </plugins>
59 </build>
60 <dependencies>
61 <dependency>
62 <groupId>log4j</groupId>
63 <artifactId>log4j</artifactId>
64 <version>1.2.14</version>
65 </dependency>
66 <dependency>
67 <groupId>commons-logging</groupId>
68 <artifactId>commons-logging</artifactId>
69 <version>1.1.1</version>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.commons</groupId>
73 <artifactId>commons-io</artifactId>
74 <version>1.3.2</version>
75 </dependency>
76 <dependency>
77 <groupId>org.springframework.ws</groupId>
78 <artifactId>spring-ws-core</artifactId>
79 <version>1.5.0</version>
80 </dependency>
81 <dependency>
82 <groupId>org.springframework.ws</groupId>
83 <artifactId>spring-oxm</artifactId>
84 <version>1.5.0</version>
85 </dependency>
86 <dependency>
87 <groupId>javax.servlet</groupId>
88 <artifactId>servlet-api</artifactId>
89 <version>2.5</version>
90 <scope>provided</scope>
91 </dependency>
92 <dependency>
93 <groupId>junit</groupId>
94 <artifactId>junit</artifactId>
95 <version>3.8.2</version>
96 </dependency>
97
98 <dependency>
99 <groupId>org.codehaus.castor</groupId>
100 <artifactId>castor</artifactId>
101 <version>1.1.2.1</version>
102 <exclusions>
103 <exclusion>
104 <groupId>xerces</groupId>
105 <artifactId>xerces</artifactId>
106 </exclusion>
107 </exclusions>
108 </dependency>
109 <dependency>
110 <groupId>xerces</groupId>
111 <artifactId>xercesImpl</artifactId>
112 <version>2.8.1</version>
113 </dependency>
114
115 <dependency>
116 <groupId>org.mortbay.jetty</groupId>
117 <artifactId>jetty</artifactId>
118 <version>6.1.9</version>
119 </dependency>
120 <!--
121 <dependency>
122 <groupId>org.mortbay.jetty</groupId>
123 <artifactId>jetty-spring</artifactId>
124 <version>6.1.9</version>
125 <exclusions>
126 <exclusion>
127 <groupId>org.springframework</groupId>
128 <artifactId>spring</artifactId>
129 </exclusion>
130 </exclusions>
131 </dependency>
132 -->
133 <dependency>
134 <groupId>javax.xml.soap</groupId>
135 <artifactId>saaj-api</artifactId>
136 <version>1.3</version>
137 <scope>runtime</scope>
138 </dependency>
139 <dependency>
140 <groupId>com.sun.xml.messaging.saaj</groupId>
141 <artifactId>saaj-impl</artifactId>
142 <version>1.3</version>
143 <scope>runtime</scope>
144 </dependency>
145 <dependency>
146 <groupId>javax.activation</groupId>
147 <artifactId>activation</artifactId>
148 <version>1.1</version>
149 <scope>runtime</scope>
150 </dependency>
151
152
153 <dependency>
154 <groupId>org.argeo.slc</groupId>
155 <artifactId>argeo-slc-core</artifactId>
156 <version>0.9-SNAPSHOT</version>
157 </dependency>
158 </dependencies>
159 <repositories>
160 <repository>
161 <id>central</id>
162 <url>http://www.argeo.org/maven/proxy</url>
163 <releases>
164 <enabled>true</enabled>
165 <updatePolicy>daily</updatePolicy>
166 <checksumPolicy>warn</checksumPolicy>
167 </releases>
168 </repository>
169 </repositories>
170 </project>