Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for subproject1 (0.25 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

        }
    
        private void withSubprojects(String... subprojects) {
            subprojects.each {
                createDir it
                settingsFile "include '$it'\n"
            }
        }
    
        private void withZipArtifactProducingSubprojects(String... subprojects) {
            withSubprojects subprojects
            taskTypeWithOutputFileProperty()
            buildFile '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

        }
    
        TestFile multiProjectBuildInSubFolder(String projectName, List<String> subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            new BuildTestFixture(projectDir).withBuildInSubDir().multiProjectBuild(projectName, subprojects, cl)
        }
    
        void multiProjectBuildInRootFolder(String projectName, List<String> subprojects, @DelegatesTo(BuildTestFile) Closure cl = {}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            given:
            def repoDir = file("repo")
            createDirs("deck", "card", "shuffle")
            settingsFile << "include 'deck', 'card', 'shuffle'"
            buildFile << """
                subprojects {
                    apply plugin: 'cpp-library'
                    apply plugin: 'maven-publish'
    
                    group = 'some.group'
                    version = '1.2'
                    publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  4. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

        abstract int getMaxDistributionSizeBytes()
    
        /**
         * Change this whenever you add or remove subprojects for distribution core modules (lib/).
         */
        int getCoreLibJarsCount() {
            69
        }
    
        /**
         * Change this whenever you add or remove subprojects for distribution-packaged plugins (lib/plugins).
         */
        int getPackagedPluginsJarCount() {
            80
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

                include 'api'
                include 'util'
                include 'other'
            """
    
            file("build.gradle") << """
                apply plugin: 'java'
    
                subprojects {
                    apply plugin: 'java'
                    apply plugin: 'idea'
                }
    
                project(':api') {
                    dependencies {
                        implementation project(':util')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    15818 ?        Sl     2:15 /opt/jdk/oracle-jdk-8/bin/java -DintegTest.gradleHomeDir=/home/tcagent1/agent/work/668602365d1521fc/subprojects/test-kit/build/integ test -DintegTest.gradleUserHomeDir=/home/tcagent1/agent/work/668602365d1521fc/intTestHomeDir -DintegTest.toolingApiShadedJarDir=/home/tcagent1/agent/work/668602365d1521fc/subprojects/tooling-api/build/shaded-jar -Djava.security.manager=worker.org.gradle.process.internal.worker.child.BootstrapSecurityManager -Dorg.gradle.ci.agentCount=2...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                    }
                    group = 'org.test'
                    version = '1.9'
                }
            """
        }
    
        def "can get recommendations from a platform subproject"() {
            def module = mavenHttpRepo.module("org", "foo", "1.1").publish()
    
            given:
            platformModule("""
                constraints {
                    api "org:foo:1.1"
                }
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                include 'lib1', 'lib2'
    
            """
    
            buildFile << """
                gradle.beforeProject {
                    println "Before project \$it"
                }
                subprojects {
                    configurations {
                        conf
                    }
    
                    dependencies {
                        conf 'org:module:1.0'
                    }
    
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    Gradle inherently understands the dependencies among tasks.
    Consequently, it can determine the tasks that need execution when you target a specific task.
    
    Let's take an example application with an `app` subproject and a `some-logic` subproject:
    
    ====
    [.multi-language-sample]
    =====
    .settings.gradle.kts
    [source,kotlin]
    ----
    rootProject.name = "gradle-project"
    include("app")
    include("some-logic")
    ----
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            when:
            executeTaskViaBuildInvocationsLaunchable(":doSomething")
    
            then:
            assertHasBuildSuccessfulLogging()
            outputContains("do something")
        }
    
        def "can run included subproject task"() {
            given:
            settingsFile << "includeBuild('other-build')"
            file('other-build/settings.gradle') << """
                rootProject.name = 'other-build'
                include 'sub'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top