Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for otherProject (0.28 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyNotationIntegrationSpec.groovy

            when:
            createDirs("otherProject")
            settingsFile << "include 'otherProject'"
    
            buildFile <<  """
    configurations {
        conf
        confTwo
    }
    
    project(':otherProject') {
        configurations {
            otherConf
        }
    }
    
    dependencies {
        conf project(':otherProject')
        confTwo project(path: ':otherProject', configuration: 'otherConf')
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:32 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultDependencySpecContainerTest.groovy

            when:
            container.library('someLib')
            container.project('otherProject').library('someLib')
            container.project('otherProject')
    
            container.library('someLib')
            container.library('someLib').project('otherProject')
            container.project('otherProject')
    
            then:
            container.dependencies.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/MixedLanguageIntegrationTest.groovy

                #include "hello.h"
                extern "C" {
                    #include "otherProject/bonjour.h"
                }
    
                int main () {
                  hello();
                  bonjour();
                  return 0;
                }
            """
    
            and:
            file("include", "otherProject", "bonjour.h") << """
                void bonjour();
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ReportingTaskDependencyUsageTracker.kt

        }
    
        private
        fun checkForCoupledProjects(taskDependencies: Set<Task>) {
            taskDependencies.forEach { task ->
                val otherProject = task.project as ProjectInternal
                coupledProjectsListener.onProjectReference(referrer.owner, otherProject.owner)
            }
        }
    
        private
        fun reportProjectIsolationProblemOnApiUsage() {
            val problem = problemFactory.problem {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/test/groovy/org/gradle/api/plugins/jvm/internal/JvmComponentDependenciesTest.groovy

            def otherProject = Mock(Project)
            def otherProjectDependency = Mock(ProjectDependency)
    
            when:
            dependencies {
                implementation(project(":path:to:somewhere")) {
                    // configure dependency
                }
            }
    
            then:
            1 * currentProject.project(":path:to:somewhere") >> otherProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 16 19:56:35 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioCompositeBuildIntegrationTest.groovy

            and:
            def oneProject = projectFile("one/one.vcxproj")
            def twoProject = projectFile("two/twoDll.vcxproj")
            def utilProject = projectFile("util/utilDll.vcxproj")
            def otherProject = projectFile("other/other.vcxproj")
    
            final mainSolution = solutionFile("app.sln")
            mainSolution.assertHasProjects("one", "twoDll", "utilDll", "other")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

                myExtension.message = "the message"
            """
            file("b/build.gradle") << """
                plugins.apply(my.MyPlugin)
                def otherProject = project(':a')
                myExtension.message = otherProject.myExtension.message
            """
    
            when:
            executer.withArguments(ENABLE_CLI, WARN_PROBLEMS_CLI_OPT)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            libProject.testComponent != null
    
            def otherProject = models[3]
            otherProject.projectIdentifier.projectPath == ':other'
            otherProject.mainComponent == null
            otherProject.testComponent == null
        }
    
        def "can query the models for each project in a composite build"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            def otherProject = Mock(ProjectInternal)
            def otherTaskContainer = Mock(TaskContainerInternal)
            def otherProjectState = Mock(ProjectState)
    
            projectRegistry.getProject(_) >> otherProject
    
            otherProject.owner >> otherProjectState
            1 * otherProjectState.ensureTasksDiscovered()
            otherProject.tasks >> otherTaskContainer
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

        override fun getVersion(): Any =
            delegate.version
    
        override fun getRootProject(): Project =
            delegate.rootProject
    
        override fun depthCompare(otherProject: Project): Int =
            delegate.depthCompare(otherProject)
    
        override fun getGradle(): Gradle =
            delegate.gradle
    
        override fun getAllTasks(recursive: Boolean): MutableMap<Project, MutableSet<Task>> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top