-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
85 lines (79 loc) · 2.79 KB
/
Copy pathpom.xml
File metadata and controls
85 lines (79 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2010 RedEngine Ltd, http://www.redengine.co.nz. All rights reserved. -->
<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">
<parent>
<groupId>net.stickycode.parent</groupId>
<artifactId>sticky-jar</artifactId>
<version>1.22</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>net.stickycode.ws</groupId>
<artifactId>sticky-ws-cxf-spring3</artifactId>
<version>3.2-SNAPSHOT</version>
<packaging>jar</packaging>
<name>sticky-ws-cxf-spring3-3</name>
<description>Web Service registration ws support for spring30</description>
<url>http://www.StickyCode.net/ws/sticky-ws-cxf-spring30/</url>
<inceptionYear>2009</inceptionYear>
<scm>
<connection>scm:svn:http://stickycode.googlecode.com/svn/trunk/net.stickycode.ws/sticky-ws-cxf-spring3</connection>
<developerConnection>scm:svn:https://stickycode.googlecode.com/svn/trunk/net.stickycode.ws/sticky-ws-cxf-spring3</developerConnection>
<url>http://code.google.com/p/stickycode/source/browse/#svn/trunk/net.stickycode.ws/sticky-ws-cxf-spring3</url>
</scm>
<dependencies>
<dependency>
<groupId>org.mockwire</groupId>
<artifactId>mockwire-spring3</artifactId>
<version>[7.1,8)</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>spring-context</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.stickycode.ws</groupId>
<artifactId>sticky-ws-cxf</artifactId>
<version>[4.1,5)</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>[3.1.2.RELEASE]</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
<exclusion>
<artifactId>spring-beans</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>spring-context</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>spring-core</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>aopalliance</artifactId>
<groupId>aopalliance</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.stickycode.composite</groupId>
<artifactId>sticky-composite-spring3</artifactId>
<version>[1.3,2)</version>
</dependency>
<dependency>
<groupId>net.stickycode.composite</groupId>
<artifactId>sticky-composite-cxf-soap-http</artifactId>
<version>[2.1,3)</version>
</dependency>
</dependencies>
</project>