You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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
Copy file name to clipboardExpand all lines: README.adoc
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,13 +10,13 @@ web services using one of the many ways to manipulate XML payloads.
10
10
== Installation
11
11
12
12
Releases of Spring Web Services are available for download from Maven Central,
13
-
as well as our own repository, http://repo.spring.io/release[http://repo.springsource.org/release].
13
+
as well as our own repository, https://repo.spring.io/release[https://repo.spring.io/release].
14
14
15
15
Please visit https://projects.spring.io/spring-ws to get the right Maven/Gradle settings for your selected version.
16
16
17
17
== Building Spring Web Services
18
18
19
-
. Run `mvn clean package`
19
+
. Run `./mvnw clean package`
20
20
21
21
This will generate the artifacts.
22
22
@@ -56,16 +56,16 @@ By participating, you are expected to uphold this code. Please report unaccepta
56
56
57
57
= Spring Web Services Project Site
58
58
59
-
You can find the documentation, issue management, support, samples, and guides for using Spring Web Services at http://projects.spring.io/spring-ws/
59
+
You can find the documentation, issue management, support, samples, and guides for using Spring Web Services at https://projects.spring.io/spring-ws/
60
60
61
61
== Documentation
62
62
63
-
See the current http://docs.spring.io/spring-ws/docs/current/api/[Javadoc] and http://docs.spring.io/spring-ws/docs/current/reference/htmlsingle/[reference docs].
63
+
See the current https://docs.spring.io/spring-ws/docs/current/api/[Javadoc] and https://docs.spring.io/spring-ws/docs/current/reference/[reference docs].
64
64
65
65
== Issue Tracking
66
66
67
67
Spring Web Services uses https://jira.spring.io/browse/SWS[JIRA] for issue tracking purposes
68
68
69
69
== License
70
70
71
-
Spring Web Services is http://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 licensed].
71
+
Spring Web Services is https://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 licensed].
The `SpringPlainTextPasswordValidationCallbackHandler` uses http://project.spring.io/spring-security[_Spring Security_] to authenticate users. It is beyond the scope of this document to describe Spring Security, but suffice it to say that it is a full-fledged security framework. You can read more about it in the https://docs.spring.io/spring-security/site/docs/current/reference/htmlsingle/[_Spring Security reference documentation_].
200
+
The `SpringPlainTextPasswordValidationCallbackHandler` uses https://spring.io/projects/spring-security[_Spring Security_] to authenticate users. It is beyond the scope of this document to describe Spring Security, but suffice it to say that it is a full-fledged security framework. You can read more about it in the https://docs.spring.io/spring-security/site/docs/current/reference/htmlsingle/[_Spring Security reference documentation_].
201
201
202
202
The `SpringPlainTextPasswordValidationCallbackHandler` requires an `AuthenticationManager` to operate. It uses this manager to authenticate against a `UsernamePasswordAuthenticationToken` that it creates. If authentication is successful, the token is stored in the `SecurityContextHolder`. You can set the authentication manager using the `authenticationManager`property:
0 commit comments