This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * http://springsource.org/downloads/sts (302) migrated to: https://spring.io/projectss/sts ([https](https://springsource.org/downloads/sts) result 404). ## Fixed Success These URLs were fixed successfully. * http://issues.gradle.org/browse/GRADLE-1116 migrated to: https://issues.gradle.org/browse/GRADLE-1116 ([https](https://issues.gradle.org/browse/GRADLE-1116) result 200). * http://www.apache.org/licenses/LICENSE-2.0.txt migrated to: https://www.apache.org/licenses/LICENSE-2.0.txt ([https](https://www.apache.org/licenses/LICENSE-2.0.txt) result 200). * http://projects.spring.io/spring-webflow migrated to: https://projects.spring.io/spring-webflow ([https](https://projects.spring.io/spring-webflow) result 301). * http://repo.spring.io/libs-release migrated to: https://repo.spring.io/libs-release ([https](https://repo.spring.io/libs-release) result 302). * http://repo.spring.io/libs-snapshot migrated to: https://repo.spring.io/libs-snapshot ([https](https://repo.spring.io/libs-snapshot) result 302). * http://repo.spring.io/plugins-release migrated to: https://repo.spring.io/plugins-release ([https](https://repo.spring.io/plugins-release) result 302).
85 lines
2.5 KiB
Bash
Executable File
85 lines
2.5 KiB
Bash
Executable File
STS_TEST_VERSION='2.8.1.RELEASE'
|
|
|
|
cd `dirname $0`
|
|
clear
|
|
cat <<EOM
|
|
|
|
-----------------------------------------------------------------------
|
|
Spring Web Flow Eclipse/STS project import guide
|
|
|
|
This script will guide you through the process of importing the
|
|
Spring Web Flow sources into Eclipse/STS. It is recommended that you
|
|
have a recent version of the SpringSource Tool Suite (this script has
|
|
been tested against STS $STS_TEST_VERSION), but at the minimum you will
|
|
need Eclipse + AJDT.
|
|
|
|
If you need to download and install STS, please do that now by
|
|
visiting https://spring.io/projectss/sts
|
|
|
|
Otherwise, press enter and we'll begin.
|
|
EOM
|
|
|
|
read
|
|
|
|
# this command:
|
|
# - wipes out any existing Eclipse metadata
|
|
# - generates metadata for all subprojects
|
|
# - skips metadata gen for the root project (-x :eclipse) to work
|
|
# around Eclipse's inability to import hierarchical project structures
|
|
COMMAND="./gradlew cleanEclipse eclipse -x :eclipse"
|
|
|
|
cat <<EOM
|
|
|
|
-----------------------------------------------------------------------
|
|
STEP 1: Generate subproject Eclipse metadata
|
|
|
|
The first step will be to generate Eclipse project metadata for each
|
|
of the spring-* subprojects. This happens via the built-in
|
|
"Gradle wrapper" script (./gradlew in this directory). If this is your
|
|
first time using the Gradle wrapper, this step may take a few minutes
|
|
while a Gradle distribution is downloaded for you.
|
|
|
|
The command run will be:
|
|
|
|
$COMMAND
|
|
|
|
Press enter when ready.
|
|
EOM
|
|
|
|
read
|
|
|
|
$COMMAND || exit
|
|
|
|
cat <<EOM
|
|
|
|
-----------------------------------------------------------------------
|
|
STEP 2: Import subprojects into Eclipse/STS
|
|
|
|
Within Eclipse/STS, do the following:
|
|
|
|
File > Import... > Existing Projects into Workspace
|
|
> When prompted for the 'root directory', provide $PWD
|
|
> Press enter. You will see the modules show up under "Projects"
|
|
> All projects should be selected/checked. Click Finish.
|
|
> When the project import is complete, you should have no errors.
|
|
|
|
When the above is complete, return here and press the enter key.
|
|
EOM
|
|
|
|
read
|
|
|
|
cat <<EOM
|
|
-----------------------------------------------------------------------
|
|
STEP 3: Enable Git support for all projects
|
|
|
|
- In the Eclipse/STS Package Explorer, select all spring* projects.
|
|
- Right-click to open the context menu and select Team > Share Project...
|
|
- In the Share Project dialog that appears, select Git and press Next
|
|
- Check "Use or create repository in parent folder of project"
|
|
- Click Finish
|
|
|
|
When complete, you'll have Git support enabled for all projects.
|
|
|
|
You're ready to code! Goodbye!
|
|
EOM
|