Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for subproject1 (0.26 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeleteTaskIntegrationTest.groovy

            """
    
            expect:
            succeeds "clean"
        }
    
        @ToBeFixedForIsolatedProjects(because = "subprojects, configure projects from root")
        def "clean build and build clean work reliably"() {
            settingsFile << "include 'a', 'b'"
            buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                }
                project(':b') {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.8K 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. subprojects/core-api/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.instrumented-project")
    }
    
    description = "Public and internal 'core' Gradle APIs that are required by other subprojects"
    
    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 5 occurrences
            "InlineMeSuggester", // 1 occurrences
            "MalformedInlineTag", // 3 occurrences
            "MixedMutabilityReturnType", // 3 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

            testFile('settings.gradle') << ''' apply { from 'other.gradle' } '''
            createDirs("child")
            testFile('other.gradle') << ''' include 'child' '''
            testFile('build.gradle') << ''' assert ['child'] == subprojects*.name '''
    
            inTestDirectory().withTasks("help").run()
        }
    
        @Test
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        void canExecuteExternalScriptFromInitScript() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessPattern.kt

     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.project.ProjectInternal
    
    
    internal
    enum class CrossProjectModelAccessPattern {
        DIRECT,
        CHILD,
        SUBPROJECT,
        ALLPROJECTS
    }
    
    
    internal
    data class CrossProjectModelAccessInstance(
        val pattern: CrossProjectModelAccessPattern,
        val relativeTo: ProjectInternal,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 964 bytes
    - Viewed (0)
  6. .gitignore

    /*/*/*/*.iml
    /*/*/*/*/*.iml
    /out
    /*/out
    /*/*/out
    /*/*/*/out
    /*/*/*/*/out
    /.teamcity/target
    /gradle.ipr
    /gradle.iws
    
    # Eclipse
    # -------
    *.classpath
    *.project
    *.settings
    /bin
    /subprojects/*/bin
    atlassian-ide-plugin.xml
    .metadata/
    
    # NetBeans
    # --------
    .nb-gradle
    .nb-gradle-properties
    
    # Vim
    # ---
    *.sw[nop]
    
    # Emacs
    # -----
    *~
    \#*\#
    .\#*
    
    # Textmate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            eclipseProject.projectDependencies.collect {it.path}  == ['b1']
        }
    
        def "EclipseProject model honours custom project name"() {
            when:
            buildB.buildFile << """
                subprojects {
                    apply plugin: 'eclipse'
                    eclipse {
                        project.name = project.name + "-renamed"
                    }
                }
                project(":b1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

        def "can use compile classpath for API and implementation separation"() {
            given:
            createDirs("a", "b", "c", "d")
            settingsFile << "include('a', 'b', 'c', 'd')"
            buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                    apply plugin: 'eclipse'
    
                    configurations {
                        compileClasspath {
                            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsIntegrationTest.groovy

            then:
            failureDescriptionContains "Cannot generate project dependency accessors because project '1library' doesn't follow the naming convention: [a-zA-Z]([A-Za-z0-9\\-_])*"
        }
    
        def "fails if two subprojects have the same java name"() {
            given:
            createDirs("super-cool", "super--cool")
            settingsFile << """
                include 'super-cool'
                include 'super--cool'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:11:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r28/ToolingApiEclipseModelCrossVersionSpec.groovy

        @TargetGradleVersion(">=3.0")
        def "makes sure module names are unique in gradle"() {
            given:
            file('build.gradle').text = """
    subprojects {
        apply plugin: 'java'
    }
    
    project(':impl') {
        dependencies {
            ${implementationConfiguration} project(':api')
        }
    }
    
    project(':contrib:impl') {
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top