]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.ws/pom.xml
Introduce SLC Main command line
[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 <properties>
10 <packaging>jar</packaging>
11 </properties>
12 <packaging>${packaging}</packaging>
13 <description>SLC Web Services</description>
14 <build>
15 <plugins>
16 <!--
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-eclipse-plugin</artifactId>
20 <version>2.5-SNAPSHOT</version>
21 <configuration>
22 <wtpversion>2.0</wtpversion>
23 <downloadSources>true</downloadSources>
24 <workspace>C:\mbaudier\workspace</workspace>
25 </configuration>
26 </plugin>
27 -->
28 <plugin>
29 <groupId>org.mortbay.jetty</groupId>
30 <artifactId>maven-jetty-plugin</artifactId>
31 <configuration>
32 <scanIntervalSeconds>5</scanIntervalSeconds>
33 <scanTargetPatterns>
34 <scanTargetPattern>
35 <directory>
36 src/main/webapp/WEB-INF
37 </directory>
38 <includes>
39 <include>**/*.xml</include>
40 </includes>
41 </scanTargetPattern>
42 </scanTargetPatterns>
43 </configuration>
44 </plugin>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-compiler-plugin</artifactId>
48 <configuration>
49 <source>1.5</source>
50 <target>1.5</target>
51 </configuration>
52 </plugin>
53 <!--
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-dependency-plugin</artifactId>
57 <executions>
58 <execution>
59 <id>copy-dependencies</id>
60 <phase>package</phase>
61 <goals>
62 <goal>copy-dependencies</goal>
63 </goals>
64 <configuration>
65 <outputDirectory>
66 src/main/webapp/WEB-INF/lib
67 </outputDirectory>
68 </configuration>
69 </execution>
70 </executions>
71
72 </plugin>
73 -->
74 </plugins>
75 </build>
76 <dependencies>
77 <dependency>
78 <groupId>log4j</groupId>
79 <artifactId>log4j</artifactId>
80 <version>1.2.14</version>
81 </dependency>
82 <dependency>
83 <groupId>commons-logging</groupId>
84 <artifactId>commons-logging</artifactId>
85 <version>1.1.1</version>
86 </dependency>
87 <dependency>
88 <groupId>org.apache.commons</groupId>
89 <artifactId>commons-io</artifactId>
90 <version>1.3.2</version>
91 </dependency>
92 <dependency>
93 <groupId>org.springframework.ws</groupId>
94 <artifactId>spring-ws-core</artifactId>
95 <version>1.5.0</version>
96 </dependency>
97 <dependency>
98 <groupId>org.springframework.ws</groupId>
99 <artifactId>spring-oxm</artifactId>
100 <version>1.5.0</version>
101 </dependency>
102 <dependency>
103 <groupId>javax.servlet</groupId>
104 <artifactId>servlet-api</artifactId>
105 <version>2.5</version>
106 <scope>provided</scope>
107 </dependency>
108 <dependency>
109 <groupId>junit</groupId>
110 <artifactId>junit</artifactId>
111 <version>3.8.2</version>
112 </dependency>
113
114 <dependency>
115 <groupId>org.codehaus.castor</groupId>
116 <artifactId>castor</artifactId>
117 <version>1.1.2.1</version>
118 <exclusions>
119 <exclusion>
120 <groupId>xerces</groupId>
121 <artifactId>xerces</artifactId>
122 </exclusion>
123 </exclusions>
124 </dependency>
125 <dependency>
126 <groupId>xerces</groupId>
127 <artifactId>xercesImpl</artifactId>
128 <version>2.8.1</version>
129 </dependency>
130
131 <dependency>
132 <groupId>org.mortbay.jetty</groupId>
133 <artifactId>jetty</artifactId>
134 <version>6.1.9</version>
135 </dependency>
136 <!--
137 <dependency>
138 <groupId>org.mortbay.jetty</groupId>
139 <artifactId>jetty-spring</artifactId>
140 <version>6.1.9</version>
141 <exclusions>
142 <exclusion>
143 <groupId>org.springframework</groupId>
144 <artifactId>spring</artifactId>
145 </exclusion>
146 </exclusions>
147 </dependency>
148 -->
149 <dependency>
150 <groupId>javax.xml.soap</groupId>
151 <artifactId>saaj-api</artifactId>
152 <version>1.3</version>
153 <scope>runtime</scope>
154 </dependency>
155 <dependency>
156 <groupId>com.sun.xml.messaging.saaj</groupId>
157 <artifactId>saaj-impl</artifactId>
158 <version>1.3</version>
159 <scope>runtime</scope>
160 </dependency>
161 <dependency>
162 <groupId>javax.activation</groupId>
163 <artifactId>activation</artifactId>
164 <version>1.1</version>
165 <scope>runtime</scope>
166 </dependency>
167
168
169 <dependency>
170 <groupId>org.argeo.slc</groupId>
171 <artifactId>argeo-slc-core</artifactId>
172 <version>0.9-SNAPSHOT</version>
173 </dependency>
174 </dependencies>
175 <repositories>
176 <repository>
177 <id>central</id>
178 <url>http://www.argeo.org/maven/proxy</url>
179 <releases>
180 <enabled>true</enabled>
181 <updatePolicy>daily</updatePolicy>
182 <checksumPolicy>warn</checksumPolicy>
183 </releases>
184 </repository>
185 </repositories>
186 </project>