├── .github ├── release-drafter.yml └── workflows │ ├── build-verification.yml │ └── release-drafter.yml ├── .gitignore ├── LICENSE ├── README.md ├── develocity-gradle.yml ├── develocity-maven.yml ├── images ├── build-scan.png └── links.png ├── src └── gradle │ ├── develocity-gradle.template.yml │ └── init-scripts │ ├── build-scan-collector.groovy │ └── develocity-injection.init.gradle └── test_maven.sh /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build-verification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/.github/workflows/build-verification.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | build/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/README.md -------------------------------------------------------------------------------- /develocity-gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/develocity-gradle.yml -------------------------------------------------------------------------------- /develocity-maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/develocity-maven.yml -------------------------------------------------------------------------------- /images/build-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/images/build-scan.png -------------------------------------------------------------------------------- /images/links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/images/links.png -------------------------------------------------------------------------------- /src/gradle/develocity-gradle.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/src/gradle/develocity-gradle.template.yml -------------------------------------------------------------------------------- /src/gradle/init-scripts/build-scan-collector.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/src/gradle/init-scripts/build-scan-collector.groovy -------------------------------------------------------------------------------- /src/gradle/init-scripts/develocity-injection.init.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/src/gradle/init-scripts/develocity-injection.init.gradle -------------------------------------------------------------------------------- /test_maven.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradle/develocity-gitlab-templates/HEAD/test_maven.sh --------------------------------------------------------------------------------