Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for gradleJars (0.15 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractGradleceptionSmokeTest.groovy

        }
    
        private SmokeTestGradleRunner runnerFor(List<String> tasks, File testKitDir) {
            List<String> gradleArgs = tasks + GRADLE_BUILD_TEST_ARGS
            def runner = testKitDir != null
                ? runnerWithTestKitDir(testKitDir, gradleArgs)
                : runner(*gradleArgs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

        }
    
        @Override
        void run(GradleInvoker buildInvoker, List<String> gradleArgs, List<String> jvmArgs) {
            def toolingApiInvoker = (ToolingApiGradleClient) buildInvoker
            toolingApiInvoker.runOperation(initialAction) { builder ->
                builder.setJvmArguments(jvmArgs)
                builder.withArguments(gradleArgs)
                tapiAction.accept(builder)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            buildFile << """
                // not declared
                System.getProperty("CI")
            """
    
            when:
            mechanism.setup(this)
            configurationCacheRun(*mechanism.gradleArgs)
    
            then:
            problems.assertResultHasProblems(result) {
                withInput("Build file 'build.gradle': system property 'CI'")
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    - Conventionally use a lowercase reverse domain name convention for the namespace.
    - Conventionally use only lowercase characters in the name.
    - `org.gradle`, `com.gradle`, and `com.gradleware` namespaces may not be used.
    - Cannot start or end with a '.' character.
    - Cannot contain consecutive '.' characters (i.e., '..').
    
    A namespace that identifies ownership and a name is sufficient for a plugin ID.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top