Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for unconfigured (0.18 sec)

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

        /**
         * The location of the final rendered Dokka content.
         */
        public abstract DirectoryProperty getRenderedDocumentation();
    
        /**
         * The Dokka version to use instead the default one Dokkatoo is configured with.
         * Will use the Dokkatoo default, if not specified.
         */
        public abstract Property<String> getDokkaVersionOverride();
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 15 14:00:14 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  2. .gitignore

    .teamcity/.mvn/.gradle-enterprise/
    /discoclient.properties
    
    # Ignore local configuration files for asdf, allowing the JDK to be configured for project (https://asdf-vm.com)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 03 21:04:56 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

            checkXrefLinksInUserManualAreValid(layout, tasks, extension);
        }
    
        public static List<String> getDefaultExcludedPackages() {
            // TODO: This should be configured via the extension vs hardcoded in the plugin
            List<String> excludedPackages = new ArrayList<>();
            // These are part of the API, but not the DSL
            excludedPackages.add("org.gradle.tooling.**");
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

    }
    
    // The below mimics what the java-library plugin does, but creating a library of test fixtures instead.
    
    sourceSets.matching { it.name.endsWith("Test") }.all {
        // the 'test' (with lower case 't') source set is already configured to use test fixtures by the JavaTestFixturesPlugin
        configurations[implementationConfigurationName].dependencies.add(
            dependencies.testFixtures(project)
        )
    }
    
    val testFixturesApi by configurations
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    ### Remote build cache
    
    Gradle, Inc runs a set of remote build cache nodes to speed up local builds when developing Gradle. By default, the build is [configured](https://github.com/gradle/gradle-org-conventions-plugin#what-it-does) to use the build cache node in the EU region.
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top