Update spring-web pom dependency on hessian

Previously, the spring-web pom still depended on the EBR-style
com.springsource artifactId for hessian.

It now depends on Maven Central-style com.caucho:hessian:3.2.1 naming.

Note that Hessian 3.2.1 acutally does not exist in Maven Central, but is
present in the SpringSource repository at http://repo.springsource.org.
In any case, the dependency is optional, so should not cause issues at
build time for applications dependent on spring-web.

Issue: SPR-9854
This commit is contained in:
Chris Beams
2012-10-11 15:24:18 -07:00
parent 682b0f2c63
commit 5e318e73f8

View File

@@ -23,7 +23,7 @@
<dependencies>
<dependency>
<groupId>com.caucho</groupId>
<artifactId>com.springsource.com.caucho</artifactId>
<artifactId>hessian</artifactId>
<version>3.2.1</version>
<optional>true</optional>
</dependency>