Skip to content

Commit

Permalink
build: replace deprecated plugin with develocity plugin
Browse files Browse the repository at this point in the history
Signed-off-by: Kengo TODA <skypencil@gmail.com>
  • Loading branch information
KengoTODA committed Apr 23, 2024
1 parent 9cd3a92 commit 5cfbb04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -19,8 +19,8 @@ jobs:
- name: Build with Gradle
uses: gradle/actions/setup-gradle@v3
with:
arguments: build testAggregateTestReport --scan --continue
dependency-graph: generate-and-submit
- run: ./gradlew build testAggregateTestReport --continue
- name: Upload build reports
if: always()
uses: actions/upload-artifact@v4
Expand Down
8 changes: 4 additions & 4 deletions settings.gradle.kts
@@ -1,14 +1,14 @@
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
id("com.gradle.enterprise") version("3.17.2")
id("com.gradle.develocity") version("3.17.2")
}

rootProject.name = "kosmo"
include("backend")

gradleEnterprise {
develocity {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
}
}

0 comments on commit 5cfbb04

Please sign in to comment.