Skip to content

URL Cleanup #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android_build_system_intro.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ In this section you set up a basic build script and then create a simple applica

NOTE: If you are new to Android projects, before you proceed, refer to link:/guides/gs/android[Installing the Android Development Environment] to help you configure your development environment.

You can use any build system you like when building apps with Spring, but the code you need to work with http://gradle.org[Gradle] and https://maven.apache.org[Maven] is included here. If you're not familiar with either, refer to link:/guides/gs/gradle-android[Building Android Projects with Gradle] or link:/guides/gs/maven-android[Building Android Projects with Maven].
You can use any build system you like when building apps with Spring, but the code you need to work with https://gradle.org[Gradle] and https://maven.apache.org[Maven] is included here. If you're not familiar with either, refer to link:/guides/gs/gradle-android[Building Android Projects with Gradle] or link:/guides/gs/maven-android[Building Android Projects with Maven].

2 changes: 1 addition & 1 deletion build_system_intro.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

:linkattrs:

First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with http://gradle.org[Gradle] and https://maven.apache.org[Maven] is included here. If you're not familiar with either, refer to link:/guides/gs/gradle[Building Java Projects with Gradle] or link:/guides/gs/maven[Building Java Projects with Maven].
First you set up a basic build script. You can use any build system you like when building apps with Spring, but the code you need to work with https://gradle.org[Gradle] and https://maven.apache.org[Maven] is included here. If you're not familiar with either, refer to link:/guides/gs/gradle[Building Java Projects with Gradle] or link:/guides/gs/maven[Building Java Projects with Maven].
2 changes: 1 addition & 1 deletion create_android_manifest.adoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
=== Create an Android manifest

The http://developer.android.com/guide/topics/manifest/manifest-intro.html[Android Manifest] contains all the information required to run an Android application, and it cannot build without one.
The https://developer.android.com/guide/topics/manifest/manifest-intro.html[Android Manifest] contains all the information required to run an Android application, and it cannot build without one.
2 changes: 1 addition & 1 deletion footer.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Want to write a new guide or contribute to an existing one? Check out our https://github.com/spring-guides/getting-started-guides/wiki[contribution guidelines].

IMPORTANT: All guides are released with an ASLv2 license for the code, and an http://creativecommons.org/licenses/by-nd/3.0/[Attribution, NoDerivatives creative commons license] for the writing.
IMPORTANT: All guides are released with an ASLv2 license for the code, and an https://creativecommons.org/licenses/by-nd/3.0/[Attribution, NoDerivatives creative commons license] for the writing.

4 changes: 2 additions & 2 deletions prereq_editor_android_buildtools.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- About 15 minutes
- A favorite text editor or IDE
- http://developer.android.com/sdk/index.html[Android SDK]
- http://maven.apache.org/download.cgi[Maven 3.0] or later
- https://developer.android.com/sdk/index.html[Android SDK]
- https://maven.apache.org/download.cgi[Maven 3.0] or later
- An Android device or Emulator
4 changes: 2 additions & 2 deletions prereq_editor_jdk_buildtools.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ ifndef::java_version[:java_version: 1.8]

* About 15 minutes
* A favorite text editor or IDE
* http://www.oracle.com/technetwork/java/javase/downloads/index.html[JDK {java_version}] or later
* http://www.gradle.org/downloads[Gradle 4+] or http://maven.apache.org/download.cgi[Maven 3.2+]
* https://www.oracle.com/technetwork/java/javase/downloads/index.html[JDK {java_version}] or later
* https://www.gradle.org/downloads[Gradle 4+] or https://maven.apache.org/download.cgi[Maven 3.2+]
* You can also import the code straight into your IDE:
** link:/guides/gs/sts[Spring Tool Suite (STS)]
** link:/guides/gs/intellij-idea/[IntelliJ IDEA]
4 changes: 2 additions & 2 deletions prereq_editor_jdk_maven_buildtools.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ ifndef::java_version[:java_version: 1.8]

- About 15 minutes
- A favorite text editor or IDE
- http://www.oracle.com/technetwork/java/javase/downloads/index.html[JDK {java_version}] or later
- http://maven.apache.org/download.cgi[Maven 3.2+]
- https://www.oracle.com/technetwork/java/javase/downloads/index.html[JDK {java_version}] or later
- https://maven.apache.org/download.cgi[Maven 3.2+]
- You can also import the code from this guide as well as view the web page directly into link:/guides/gs/sts[Spring Tool Suite (STS)] and work your way through it from there.