Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for otherProject (0.32 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/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

        }
    
        private
        fun observingTasksMaybeFromOtherProjects(tasks: Collection<Task>) {
            val otherProjects = tasks.mapNotNullTo(LinkedHashSet(tasks.size / 8)) { task ->
                (task.project as? ProjectInternal)?.takeIf { project -> !project.isReferrerProject }
            }
            reportCrossProjectTaskAccess(otherProjects)
        }
    
        private
        val Project.isReferrerProject: Boolean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top