Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for termsOfServiceUrl (0.71 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/BuildScanIntegrationTest.kt

            settingsFile.writeText(
                """
                plugins {
                    `gradle-enterprise`
                }
    
                gradleEnterprise.buildScan {
                    termsOfServiceUrl = "https://gradle.com/terms-of-service"
                    termsOfServiceAgree = "yes"
                }
                """ + settingsFile.readText()
            )
    
            executer.expectDocumentedDeprecationWarning(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/templates/root-project/build.gradle

            classpath "io.spring.gradle:dependency-management-plugin:$springDmPluginVersion"
    <% }%>
        }
    }
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
    apply plugin: 'com.gradle.build-scan'
    buildScan { termsOfServiceUrl = 'https://gradle.com/terms-of-service'; termsOfServiceAgree = 'yes' }
    <% }%>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 965 bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

                    plugins {
                        id "com.gradle.enterprise" version "$version"
                    }
    
                    gradleEnterprise {
                        buildScan {
                            termsOfServiceUrl = 'https://gradle.com/terms-of-service'
                            termsOfServiceAgree = 'yes'
                        }
                    }
                """
            } else {
                buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top