Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for subproject1 (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    == Lock state location and format
    
    Lock state will be preserved in a file located at the root of the project or subproject directory.
    Each file is named `gradle.lockfile`.
    The one exception to this rule is for the lock file for the <<plugins.adoc#sec:applying_plugins_buildscript,buildscript itself>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

        def canInjectMethodsFromParentProject() {
            createDirs("child1", "child2")
            file("settings.gradle").writelns("include 'child1', 'child2'");
            buildFile """
                subprojects {
                    ext.useSomeProperty = { project.name }
                    ext.useSomeMethod = { file(it) }
                }
            """
            file("child1/build.gradle") << """
                task testTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                root(":", ":test:") {
                    module('org.gradle.test:lib:1.1')
                    module('org.gradle.test:lib2:1.1')
                }
            }
        }
    
    
        def "extension can be used in any subproject"() {
            tomlFile << """[libraries]
    lib = {group = "org.gradle.test", name="lib", version.require="1.0"}
    """
            settingsFile << """
                include ':other'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            javaClassFile("Foo.class").exists()
        }
    
        def "don't implicitly compile source files from classpath"() {
            settingsFile << "include 'a', 'b'"
            buildFile << """
                subprojects {
                    apply plugin: 'java'
                    tasks.withType(JavaCompile) {
                        options.compilerArgs << '-Xlint:all' << '-Werror'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    [[sec:rules_in_settings]]
    === Declaring rules in a central place
    
    NOTE: Declaring component metadata rules in settings is an incubating feature
    
    Instead of declaring rules for each subproject individually, it is possible to declare rules in the `settings.gradle(.kts)` file for the whole build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top