Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for withPropertyName (0.1 seconds)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                    .withPropertyName("manual")
                    .withPathSensitivity(PathSensitivity.RELATIVE);
                inputs.dir("src/main/resources")
                    .withPropertyName("resources")
                    .withPathSensitivity(PathSensitivity.RELATIVE);
                inputs.dir(extension.getUserManual().getSnippets())
                    .withPropertyName("snippets")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 22:33:18 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

            tasks.named("test", Test.class).configure(task -> {
                task.getInputs().file(extension.getReleaseNotes().getRenderedDocumentation()).withPropertyName("releaseNotes").withPathSensitivity(PathSensitivity.NONE);
    
                task.getInputs().property("systemProperties", Collections.emptyMap());
                // TODO: This breaks the provider
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 19 17:06:32 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  3. build-tools-internal/build.gradle

      integTestImplementation "org.spockframework:spock-junit4"
      integTestImplementation "org.xmlunit:xmlunit-core:2.8.2"
    }
    
    tasks.register("integTest", Test) {
      inputs.dir(file("src/testKit")).withPropertyName("testkit dir").withPathSensitivity(PathSensitivity.RELATIVE)
      systemProperty 'test.version_under_test', version
      testClassesDirs = sourceSets.integTest.output.classesDirs
      classpath = sourceSets.integTest.runtimeClasspath
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
Back to Top