Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 478 for subProjects (0.17 sec)

  1. testing/performance/src/templates/native-dependents/settings.gradle

    rootProject.name = '${rootProjectName}'
    <%
    subprojects.each { subproject ->
        out.println "include '$subproject'"
    }
    %>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 143 bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

            } else {
                int chosenSubprojectNumber = subprojects.size() / 2
                def subproject = subprojects[chosenSubprojectNumber]
                def fName = "project${subproject.subprojectNumber}lib${chosenSourceFileNumber}"
                cppFile = "${subproject.name}/src/main/cpp/${fName}.cpp"
                headerFile = "${subproject.name}/src/main/public/${fName}.h"
            }
    
            """
                defaults {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/build.gradle

        group = 'org.gradle'
    
        plugins.withType(JavaBasePlugin) {
            java.sourceCompatibility = 1.5
        }
    }
    
    subprojects {
        repositories {
            mavenCentral()
        }
    
        group = 'org.gradle'
        version = '1.0'
    }
    
    configure(subprojects.findAll{ it.path in [ ':api', ':common', ':webAppJava6', ':webAppWithVars', ':webservice' ] }){
        apply plugin: 'eclipse-wtp'
    }
    
    allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/InternalNullabilityTest.java

         * See {@code subprojects/core-api/src/main/java/org/gradle/package-info.java} for an example.
         * <p>
         * Note that adding the annotation for a package in one subproject will automatically apply it for the same package in all other subprojects.
         * Therefore, it's advised to add the annotation to the package in the most appropriate subproject.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityBuildLifecycleServiceIntegrationTest.groovy

        }
    
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "accessing `tasks` from subprojects is in violation of Isolated Projects"
        )
        def "lifecycle applied build logic runs before subprojects configuration logic"() {
            given:
            settingsFile """
                include 'sub'
    
                $beforeProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/README.md

    ```
    
    Note that the samples are also used in `samples` subproject, see [`@UsesSample`](https://github.com/gradle/gradle/blob/9ade1a05427aaf04c976a0e85814b44b3435f9f9/subprojects/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UsesSample.java#L25) and [`Sample`](https://github.com/gradle/gradle/blob/903c5f2cee88c9768077d46025eaafdf65862fc8/subprojects/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java#L37).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelDslUsageIntegrationSpec.groovy

                    }
                }
    
            """
    
            then:
            succeeds "printStrings"
            output.contains "strings: [foo]"
    
            where:
            code << [
                    "subprojects",
                    "project(':a')",
                    "if (true)"
            ]
        }
    
        def "model block can be used from init script"() {
            when:
            file("init.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    [[sec:java_platform_project_constraints]]
    == Local project constraints
    
    If you have a multi-project build and want to publish a platform that links to subprojects, you can do it by declaring constraints on the subprojects which belong to the platform, as in the example below:
    
    .Declaring constraints on subprojects
    ====
    include::sample[dir="snippets/java-platform/multiproject/kotlin/platform",files="build.gradle.kts[tags=project-constraints]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

            where:
            repoType << [IVY, MAVEN]
        }
    
        def "can apply plugin from #repoType repo to subprojects"() {
            given:
            publishTestPlugin(repoType)
            buildScript """
              plugins {
                  id "org.example.plugin" version "1.0" apply false
              }
    
              subprojects {
                apply plugin: 'org.example.plugin'
              }
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/IncrementalCompileMultiProjectTestFixture.groovy

            multiProjectBuild('incremental', ['library', 'app'], language) {
                buildFile << """
                    subprojects {
                        apply plugin: '${language.name}'
                        ${language.compileTaskName}.options.incremental = true
                    }
                    ${language.projectGroovyDependencies('subprojects')}
    
                    project(':app') {
                        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top