diff --git a/.npmrc b/.npmrc deleted file mode 100644 index c4aece0906..0000000000 --- a/.npmrc +++ /dev/null @@ -1,2 +0,0 @@ -lockfile-version=3 -omit=optional diff --git a/antora-playbook-with-worktrees.yml b/antora-playbook-with-worktrees.yml index 730851715e..7b84d67d73 100644 --- a/antora-playbook-with-worktrees.yml +++ b/antora-playbook-with-worktrees.yml @@ -5,9 +5,6 @@ antora: - '@antora/collector-extension' - ./lib/antora/extensions/version-fix.js - ./lib/antora/extensions/major-minor-segment.js -runtime: - log: - format: pretty site: title: Spring Security url: https://docs.spring.io/spring-security/reference diff --git a/antora-playbook.yml b/antora-playbook.yml index 0eba9954c3..0237a14308 100644 --- a/antora-playbook.yml +++ b/antora-playbook.yml @@ -4,9 +4,6 @@ antora: - '@antora/collector-extension' - ./lib/antora/extensions/version-fix.js - ./lib/antora/extensions/major-minor-segment.js -runtime: - log: - format: pretty site: title: Spring Security url: https://docs.spring.io/spring-security/reference diff --git a/build.gradle b/build.gradle index b854b68865..922d816ff0 100644 --- a/build.gradle +++ b/build.gradle @@ -1,27 +1,16 @@ plugins { - id "io.github.rwinch.antora" version "0.0.2" -} - -group = 'org.springframework.security' -description = 'Spring Security' - -node { - version = "16.17.0" + id 'org.antora' version '1.0.0-alpha.3' } antora { - antoraVersion = "3.1.0" - arguments = ["--clean", "--fetch", "--stacktrace"] -} - -tasks.antora { + version = '~3.1' + options = ['--clean', '--fetch', '--stacktrace'] environment = [ - "ALGOLIA_API_KEY" : "82c7ead946afbac3cf98c32446154691", - "ALGOLIA_APP_ID" : "244V8V9FGG", - "ALGOLIA_INDEX_NAME" : "security-docs" + 'ALGOLIA_API_KEY': '82c7ead946afbac3cf98c32446154691', + 'ALGOLIA_APP_ID': '244V8V9FGG', + 'ALGOLIA_INDEX_NAME': 'security-docs' + ] + dependencies = [ + '@antora/collector-extension': '1.0.0-alpha.2' ] } - -repositories { - mavenCentral() -} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000000..82a76aa6b7 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,2 @@ +group=org.springframework.security +description=Spring Security Docs Site diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 41d9927a4d..249e5832f0 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index aa991fceae..ae04661ee7 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index 1b6c787337..a69d9cb6c2 100755 --- a/gradlew +++ b/gradlew @@ -205,6 +205,12 @@ set -- \ org.gradle.wrapper.GradleWrapperMain \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/gradlew.bat b/gradlew.bat index ac1b06f938..53a6b238d4 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -14,7 +14,7 @@ @rem limitations under the License. @rem -@if "%DEBUG%" == "" @echo off +@if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @@ -25,7 +25,7 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. +if "%DIRNAME%"=="" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -40,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute +if %ERRORLEVEL% equ 0 goto execute echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. @@ -75,13 +75,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar :end @rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd +if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal diff --git a/lib/antora/extensions/inject-collector-config.js b/lib/antora/extensions/inject-collector-config.js index f73f3a76cc..044c7f2d9e 100644 --- a/lib/antora/extensions/inject-collector-config.js +++ b/lib/antora/extensions/inject-collector-config.js @@ -1,6 +1,6 @@ 'use strict' -const BASE_COMMAND = 'gradlew -PbuildSrc.skipTests=true' +const BASE_COMMAND = 'gradlew -q -PbuildSrc.skipTests=true' const JVM_ARGS='-Xmx3g -XX:+HeapDumpOnOutOfMemoryError' const REPO_URL = 'https://github.com/spring-projects/spring-security' const TASK_NAME=':spring-security-docs:generateAntora' diff --git a/package.json b/package.json deleted file mode 100644 index 5fad75403b..0000000000 --- a/package.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "spring-security-docs-site", - "description": "Spring Security Docs", - "private": true, - "dependencies": { - "@antora/cli": "^3.1.0", - "@antora/site-generator-default": "^3.1.0", - "@antora/collector-extension": "1.0.0-alpha.2" - }, - "overrides": { - "vinyl-fs": { - "glob-stream": "~7.0" - } - } -}