├── .github ├── actions │ └── setup-java │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── build-and-test.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── README_JP.md ├── VERSION ├── example ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── deploygate │ │ │ └── gradlesample │ │ │ └── MainActivity.java │ │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── build.gradle ├── bundle_universal_apk.bash ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── release.sh ├── run_acceptance_tests.bash ├── settings.gradle └── src ├── main ├── groovy │ └── com │ │ └── deploygate │ │ └── gradle │ │ └── plugins │ │ ├── Config.groovy │ │ ├── DeployGatePlugin.groovy │ │ ├── artifacts │ │ ├── AabInfo.groovy │ │ ├── ApkInfo.groovy │ │ ├── DefaultPresetAabInfo.groovy │ │ ├── DefaultPresetApkInfo.groovy │ │ ├── DirectAabInfo.groovy │ │ ├── DirectApkInfo.groovy │ │ └── PackageAppTaskCompat.groovy │ │ ├── dsl │ │ ├── DeployGateExtension.groovy │ │ ├── Distribution.groovy │ │ ├── NamedDeployment.java │ │ └── syntax │ │ │ ├── DeploymentSyntax.groovy │ │ │ ├── DistributionSyntax.groovy │ │ │ └── ExtensionSyntax.groovy │ │ ├── internal │ │ ├── DeprecationLogger.groovy │ │ ├── VersionString.groovy │ │ ├── agp │ │ │ ├── AndroidGradlePlugin.groovy │ │ │ ├── IApplicationVariant.groovy │ │ │ └── IApplicationVariantImpl.groovy │ │ ├── annotation │ │ │ └── DeployGateInternal.java │ │ ├── credentials │ │ │ └── CliCredentialStore.groovy │ │ ├── gradle │ │ │ ├── GradleCompat.groovy │ │ │ ├── PropertyUtils.java │ │ │ └── ProviderFactoryUtils.java │ │ ├── http │ │ │ ├── ApiClient.java │ │ │ ├── ErrorResponse.java │ │ │ ├── GetCredentialsResponse.java │ │ │ ├── HttpClient.java │ │ │ ├── ILifecycleNotificationClient.java │ │ │ ├── LifecycleNotificationClient.java │ │ │ ├── LocalServer.java │ │ │ ├── NetworkFailure.java │ │ │ ├── NoOpLifecycleNotificationClient.java │ │ │ ├── NotifyActionRequest.java │ │ │ ├── UploadAppRequest.java │ │ │ └── UploadAppResponse.java │ │ └── utils │ │ │ ├── BrowserUtils.groovy │ │ │ ├── StringUtils.java │ │ │ └── UrlUtils.java │ │ └── tasks │ │ ├── Constants.java │ │ ├── LoginTask.java │ │ ├── LogoutTask.groovy │ │ ├── UploadAabTask.groovy │ │ ├── UploadApkTask.groovy │ │ ├── UploadArtifactTask.groovy │ │ └── inputs │ │ ├── Credentials.java │ │ └── DeploymentConfiguration.java └── resources │ ├── META-INF │ └── gradle-plugins │ │ └── deploygate.properties │ └── VERSION └── test ├── acceptance └── com │ └── deploygate │ └── gradle │ └── plugins │ ├── AcceptanceKtsTestSpec.groovy │ ├── AcceptanceTestBaseSpec.groovy │ ├── AcceptanceTestSpec.groovy │ ├── TestAndroidProject.groovy │ ├── TestDeployGatePlugin.groovy │ ├── VersionString.groovy │ └── internal │ └── agp │ └── AndroidGradlePluginAcceptanceSpec.groovy ├── groovy └── com │ └── deploygate │ └── gradle │ └── plugins │ ├── DeployGatePluginSpec.groovy │ ├── TestSystemEnv.groovy │ ├── artifacts │ ├── DefaultPresetApkInfoSpec.groovy │ └── DirectApkInfoSpec.groovy │ ├── dsl │ ├── DeployGateExtensionSpec.groovy │ └── NamedDeploymentSpec.groovy │ ├── internal │ ├── VersionStringSpec.groovy │ ├── credentials │ │ └── CliCredentialStoreTest.groovy │ ├── gradle │ │ └── ProviderFactorySpec.groovy │ ├── http │ │ ├── ApiClientSpec.groovy │ │ ├── ErrorResponseSpec.groovy │ │ ├── HttpClientResponseSpec.groovy │ │ ├── NotifyActionRequestSpec.groovy │ │ ├── UploadAppRequestSpec.groovy │ │ └── UploadAppResponseSpec.groovy │ └── utils │ │ ├── BrowserUtilsSpec.groovy │ │ └── UrlUtilsSpec.groovy │ └── tasks │ ├── ConstantsSpec.groovy │ ├── LoginTaskSpec.groovy │ ├── LogoutTaskSpec.groovy │ ├── UploadAabTaskInputParamsSpec.groovy │ ├── UploadAabTaskSpec.groovy │ ├── UploadApkTaskInputParamsSpec.groovy │ ├── UploadApkTaskSpec.groovy │ ├── UploadArtifactTaskSpec.groovy │ └── inputs │ ├── CredentialsSpec.groovy │ └── DeploymentConfigurationSpec.groovy ├── resources ├── acceptance-kts │ ├── build.gradle.kts │ └── old-dsl.build.gradle.kts ├── acceptance │ ├── android_block.gradle │ ├── assertion_tasks.gradle │ ├── build.gradle │ ├── gradle.compat.build.gradle │ └── texture │ │ └── sample.apk └── project │ ├── build.gradle │ ├── proguard-rules.pro │ ├── settings.gradle │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── deploygate │ │ └── example │ │ └── MainActivity.java │ └── res │ ├── layout │ └── main_activity.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ └── values │ └── styles.xml └── unrollAcceptance └── com └── deploygate └── gradle └── plugins ├── TestAndroidProject.groovy ├── TestDeployGatePlugin.groovy ├── VersionString.groovy └── internal └── gradle └── GradleCompatAcceptanceSpec.groovy /.github/actions/setup-java/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/.github/actions/setup-java/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/README.md -------------------------------------------------------------------------------- /README_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/README_JP.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | src/main/resources/VERSION -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /example/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/app/build.gradle -------------------------------------------------------------------------------- /example/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/app/src/main/java/com/deploygate/gradlesample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/app/src/main/java/com/deploygate/gradlesample/MainActivity.java -------------------------------------------------------------------------------- /example/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/build.gradle -------------------------------------------------------------------------------- /example/bundle_universal_apk.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/bundle_universal_apk.bash -------------------------------------------------------------------------------- /example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/gradlew -------------------------------------------------------------------------------- /example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/example/gradlew.bat -------------------------------------------------------------------------------- /example/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/release.sh -------------------------------------------------------------------------------- /run_acceptance_tests.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/run_acceptance_tests.bash -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/Config.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/Config.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/DeployGatePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/DeployGatePlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/artifacts/AabInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/artifacts/AabInfo.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/artifacts/ApkInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/artifacts/ApkInfo.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/artifacts/DefaultPresetAabInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/artifacts/DefaultPresetAabInfo.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/artifacts/DefaultPresetApkInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/artifacts/DefaultPresetApkInfo.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/artifacts/DirectAabInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/artifacts/DirectAabInfo.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/artifacts/DirectApkInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/artifacts/DirectApkInfo.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/artifacts/PackageAppTaskCompat.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/artifacts/PackageAppTaskCompat.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/dsl/DeployGateExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/dsl/DeployGateExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/dsl/Distribution.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/dsl/Distribution.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/dsl/NamedDeployment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/dsl/NamedDeployment.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/dsl/syntax/DeploymentSyntax.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/dsl/syntax/DeploymentSyntax.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/dsl/syntax/DistributionSyntax.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/dsl/syntax/DistributionSyntax.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/dsl/syntax/ExtensionSyntax.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/dsl/syntax/ExtensionSyntax.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/DeprecationLogger.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/DeprecationLogger.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/VersionString.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/VersionString.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/agp/AndroidGradlePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/agp/AndroidGradlePlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/agp/IApplicationVariant.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/agp/IApplicationVariant.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/agp/IApplicationVariantImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/agp/IApplicationVariantImpl.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/annotation/DeployGateInternal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/annotation/DeployGateInternal.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/credentials/CliCredentialStore.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/credentials/CliCredentialStore.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/gradle/GradleCompat.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/gradle/GradleCompat.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/gradle/PropertyUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/gradle/PropertyUtils.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/gradle/ProviderFactoryUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/gradle/ProviderFactoryUtils.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/ApiClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/ApiClient.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/ErrorResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/ErrorResponse.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/GetCredentialsResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/GetCredentialsResponse.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/HttpClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/HttpClient.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/ILifecycleNotificationClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/ILifecycleNotificationClient.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/LifecycleNotificationClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/LifecycleNotificationClient.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/LocalServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/LocalServer.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/NetworkFailure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/NetworkFailure.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/NoOpLifecycleNotificationClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/NoOpLifecycleNotificationClient.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/NotifyActionRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/NotifyActionRequest.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/UploadAppRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/UploadAppRequest.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/http/UploadAppResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/http/UploadAppResponse.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/utils/BrowserUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/utils/BrowserUtils.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/utils/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/utils/StringUtils.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/internal/utils/UrlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/internal/utils/UrlUtils.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/tasks/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/tasks/Constants.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/tasks/LoginTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/tasks/LoginTask.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/tasks/LogoutTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/tasks/LogoutTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/tasks/UploadAabTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/tasks/UploadAabTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/tasks/UploadApkTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/tasks/UploadApkTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/tasks/UploadArtifactTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/tasks/UploadArtifactTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/tasks/inputs/Credentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/tasks/inputs/Credentials.java -------------------------------------------------------------------------------- /src/main/groovy/com/deploygate/gradle/plugins/tasks/inputs/DeploymentConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/groovy/com/deploygate/gradle/plugins/tasks/inputs/DeploymentConfiguration.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/deploygate.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/main/resources/META-INF/gradle-plugins/deploygate.properties -------------------------------------------------------------------------------- /src/main/resources/VERSION: -------------------------------------------------------------------------------- 1 | 2.9.0 2 | -------------------------------------------------------------------------------- /src/test/acceptance/com/deploygate/gradle/plugins/AcceptanceKtsTestSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/acceptance/com/deploygate/gradle/plugins/AcceptanceKtsTestSpec.groovy -------------------------------------------------------------------------------- /src/test/acceptance/com/deploygate/gradle/plugins/AcceptanceTestBaseSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/acceptance/com/deploygate/gradle/plugins/AcceptanceTestBaseSpec.groovy -------------------------------------------------------------------------------- /src/test/acceptance/com/deploygate/gradle/plugins/AcceptanceTestSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/acceptance/com/deploygate/gradle/plugins/AcceptanceTestSpec.groovy -------------------------------------------------------------------------------- /src/test/acceptance/com/deploygate/gradle/plugins/TestAndroidProject.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/acceptance/com/deploygate/gradle/plugins/TestAndroidProject.groovy -------------------------------------------------------------------------------- /src/test/acceptance/com/deploygate/gradle/plugins/TestDeployGatePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/acceptance/com/deploygate/gradle/plugins/TestDeployGatePlugin.groovy -------------------------------------------------------------------------------- /src/test/acceptance/com/deploygate/gradle/plugins/VersionString.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/acceptance/com/deploygate/gradle/plugins/VersionString.groovy -------------------------------------------------------------------------------- /src/test/acceptance/com/deploygate/gradle/plugins/internal/agp/AndroidGradlePluginAcceptanceSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/acceptance/com/deploygate/gradle/plugins/internal/agp/AndroidGradlePluginAcceptanceSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/DeployGatePluginSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/DeployGatePluginSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/TestSystemEnv.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/TestSystemEnv.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/artifacts/DefaultPresetApkInfoSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/artifacts/DefaultPresetApkInfoSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/artifacts/DirectApkInfoSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/artifacts/DirectApkInfoSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/dsl/DeployGateExtensionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/dsl/DeployGateExtensionSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/dsl/NamedDeploymentSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/dsl/NamedDeploymentSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/VersionStringSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/VersionStringSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/credentials/CliCredentialStoreTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/credentials/CliCredentialStoreTest.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/gradle/ProviderFactorySpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/gradle/ProviderFactorySpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/http/ApiClientSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/http/ApiClientSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/http/ErrorResponseSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/http/ErrorResponseSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/http/HttpClientResponseSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/http/HttpClientResponseSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/http/NotifyActionRequestSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/http/NotifyActionRequestSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/http/UploadAppRequestSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/http/UploadAppRequestSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/http/UploadAppResponseSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/http/UploadAppResponseSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/utils/BrowserUtilsSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/utils/BrowserUtilsSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/internal/utils/UrlUtilsSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/internal/utils/UrlUtilsSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/ConstantsSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/ConstantsSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/LoginTaskSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/LoginTaskSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/LogoutTaskSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/LogoutTaskSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadAabTaskInputParamsSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadAabTaskInputParamsSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadAabTaskSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadAabTaskSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadApkTaskInputParamsSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadApkTaskInputParamsSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadApkTaskSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadApkTaskSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadArtifactTaskSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/UploadArtifactTaskSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/inputs/CredentialsSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/inputs/CredentialsSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/com/deploygate/gradle/plugins/tasks/inputs/DeploymentConfigurationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/groovy/com/deploygate/gradle/plugins/tasks/inputs/DeploymentConfigurationSpec.groovy -------------------------------------------------------------------------------- /src/test/resources/acceptance-kts/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/acceptance-kts/build.gradle.kts -------------------------------------------------------------------------------- /src/test/resources/acceptance-kts/old-dsl.build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/acceptance-kts/old-dsl.build.gradle.kts -------------------------------------------------------------------------------- /src/test/resources/acceptance/android_block.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/acceptance/android_block.gradle -------------------------------------------------------------------------------- /src/test/resources/acceptance/assertion_tasks.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/acceptance/assertion_tasks.gradle -------------------------------------------------------------------------------- /src/test/resources/acceptance/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/acceptance/build.gradle -------------------------------------------------------------------------------- /src/test/resources/acceptance/gradle.compat.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/acceptance/gradle.compat.build.gradle -------------------------------------------------------------------------------- /src/test/resources/acceptance/texture/sample.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/acceptance/texture/sample.apk -------------------------------------------------------------------------------- /src/test/resources/project/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/project/build.gradle -------------------------------------------------------------------------------- /src/test/resources/project/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/project/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/project/settings.gradle -------------------------------------------------------------------------------- /src/test/resources/project/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/project/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/test/resources/project/src/main/java/com/deploygate/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/project/src/main/java/com/deploygate/example/MainActivity.java -------------------------------------------------------------------------------- /src/test/resources/project/src/main/res/layout/main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/project/src/main/res/layout/main_activity.xml -------------------------------------------------------------------------------- /src/test/resources/project/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/project/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/test/resources/project/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/resources/project/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /src/test/unrollAcceptance/com/deploygate/gradle/plugins/TestAndroidProject.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/unrollAcceptance/com/deploygate/gradle/plugins/TestAndroidProject.groovy -------------------------------------------------------------------------------- /src/test/unrollAcceptance/com/deploygate/gradle/plugins/TestDeployGatePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/unrollAcceptance/com/deploygate/gradle/plugins/TestDeployGatePlugin.groovy -------------------------------------------------------------------------------- /src/test/unrollAcceptance/com/deploygate/gradle/plugins/VersionString.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/unrollAcceptance/com/deploygate/gradle/plugins/VersionString.groovy -------------------------------------------------------------------------------- /src/test/unrollAcceptance/com/deploygate/gradle/plugins/internal/gradle/GradleCompatAcceptanceSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeployGate/gradle-deploygate-plugin/HEAD/src/test/unrollAcceptance/com/deploygate/gradle/plugins/internal/gradle/GradleCompatAcceptanceSpec.groovy --------------------------------------------------------------------------------