diff --git a/settings.gradle.kts b/settings.gradle.kts index 8c40e11..939e860 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -2,5 +2,23 @@ Copyright (c) 2020 Mustafa Ozhan. All rights reserved. */ +plugins { + id("com.gradle.enterprise") version ("3.13") +} + +gradleEnterprise { + buildScan { + termsOfServiceUrl = "https://gradle.com/terms-of-service" + termsOfServiceAgree = "yes" + publishAlways() + + obfuscation { + username { null } + hostname { null } + ipAddresses { null } + } + } +} + rootProject.name = "ScopeMob" include(":scopemob")