Skip to content

Commit 11ccc7f

Browse files
fpavageaugregturn
authored andcommitted
SWS-1038 - Polish documentation.
* 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
1 parent 40c8447 commit 11ccc7f

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

CODE_OF_CONDUCT.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ appropriate to the circumstances. Maintainers are obligated to maintain confiden
4040
with regard to the reporter of an incident.
4141

4242
This Code of Conduct is adapted from the
43-
http://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at
44-
http://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]
43+
https://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at
44+
https://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]

CONTRIBUTING.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ unacceptable behavior to [email protected].
1010

1111
== Using JIRA issues
1212
We use JIRA issues to track bugs and enhancements. If you have a general usage question
13-
please ask on http://stackoverflow.com[Stack Overflow]. The Spring Web Services team and the
14-
broader community monitor the http://stackoverflow.com/tags/spring-ws[`spring-ws`]
13+
please ask on https://stackoverflow.com[Stack Overflow]. The Spring Web Services team and the
14+
broader community monitor the https://stackoverflow.com/tags/spring-ws[`spring-ws`]
1515
tag.
1616

1717
If you are reporting a bug, please help to speed up problem diagnosis by providing as much
@@ -45,18 +45,18 @@ added after the original pull request but before a merge.
4545
* When writing a commit message please follow http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions].
4646

4747
=== Building from source
48-
This project includes the Gradle wrapper, meaning you don't have to install any CLI tools to compile. Simply clone it and do this:
48+
This project includes the Maven wrapper, meaning you don't have to install any CLI tools to compile. Simply clone it and do this:
4949

5050
==== Default build
51-
The project can be built from the root directory using the standard gradle wrapper command:
51+
The project can be built from the root directory using the standard Maven wrapper command:
5252

5353
----
54-
$ ./gradlew clean build
54+
$ ./mvnw clean package
5555
----
5656

5757
If you are rebuilding often, you might also want to skip the tests until you are ready
5858
to submit a pull request:
5959

6060
----
61-
$ ./gradlew clean build -x test
61+
$ ./mvnw clean package -Dmaven.test.skip=true
6262
----

README.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ web services using one of the many ways to manipulate XML payloads.
1010
== Installation
1111

1212
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].
1414

1515
Please visit https://projects.spring.io/spring-ws to get the right Maven/Gradle settings for your selected version.
1616

1717
== Building Spring Web Services
1818

19-
. Run `mvn clean package`
19+
. Run `./mvnw clean package`
2020

2121
This will generate the artifacts.
2222

@@ -56,16 +56,16 @@ By participating, you are expected to uphold this code. Please report unaccepta
5656

5757
= Spring Web Services Project Site
5858

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/
6060

6161
== Documentation
6262

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].
6464

6565
== Issue Tracking
6666

6767
Spring Web Services uses https://jira.spring.io/browse/SWS[JIRA] for issue tracking purposes
6868

6969
== License
7070

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].

src/main/asciidoctor/security.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ In this case, we are only allowing the user "Bert" to log in using the password
197197

198198
===== SpringPlainTextPasswordValidationCallbackHandler
199199

200-
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_].
201201

202202
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:
203203

0 commit comments

Comments
 (0)