This commit moves the classes from the o.s.ws.transport.http and
o.s.ws.transport.support packages from spring-ws-support to
spring-ws-core. It turns out these classes don't bring extra
dependencies, which make the move quite straightforward.
Closes gh-1202
This commit updates the Gradle build to run checkstyle against the main
sources. Checks for tests, as well as certain rules, are disabled as a
first step.
See gh-1479
Updated README procedures for doing a release. Capture output from ChangeLogCreator and use it in the release notes instead of maintaining a local changelog.txt.
Related: #1295.
Introduce a tool to collect and update the changelog.txt file. Ensure that updating this report is part of the pre-checks before doing a release.
Resolves#1295.
* Fix the link to the reference docs
* Use HTTPS where possible for the links in the docs
* Document the build via the Maven wrapper consistently
Original pull request: #111
Introduced support for Java @Configuration classes in the form of the
@EnableWS annotation, WsConfigurationSupport and WsConfigurer.
Overall solution is quite similar to Spring-MVC's @EnableMvc.
Also added/uopdated reference documentation for the various
@Configuration options.
Issue: SWS-836
Removes section that mentions the special "Token" keyword in binary
signature signing, since that feature is no longer supported as of WSS4J
1.6
Issue: SWS-842
This commit migrates from a Maven-based build system to a Gradle-based
one. Changes include:
- Removed archetype & parent
- Renamed core, support, test, security and xml directories to
spring-ws-core, spring-ws-test, spring-ws-security, spring-xml
respectively.
- Moved samples to separate project
(https://github.com/spring-projects/spring-ws-samples)
Fixed typo in server documentation, and replaced reference of
PayloadRootQNameEndpointMapping with
PayloadRootAnnotationMethodEndpointMapping.
Issue: SWS-837