Skip to content

Commit

Permalink
add gradle enterprise plugin (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
RBusarow authored Oct 12, 2020
1 parent 4b1dfeb commit f277d4d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,15 @@ pluginManagement {
jcenter()
}
}

plugins {
id("com.gradle.enterprise").version("3.1.1")
}

gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlwaysIf(System.getenv("GITHUB_ACTIONS")?.toBoolean() == true)
}
}

0 comments on commit f277d4d

Please sign in to comment.