Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 484 for project2 (0.2 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseDependencySubstitutionIntegrationTest.groovy

            runEclipseTask("include 'project1', 'project2'", """
     allprojects {
        apply plugin: "java"
        apply plugin: "eclipse"
    }
    
    project(":project2") {
        ${mavenCentralRepository()}
    
        dependencies {
            implementation project(":project1")
        }
    
        configurations.all {
            resolutionStrategy.dependencySubstitution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

            MavenProject project = mock(MavenProject.class);
            when(project.getGroupId()).thenReturn("org.apache.maven.plugins.overflow");
            when(project.getArtifactId()).thenReturn("maven-project-info-reports-plugin");
            when(project.getPackaging()).thenReturn("maven-plugin");
            when(project.getName()).thenReturn("Apache Maven Project Info Reports Plugin");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyCustomStatusLatestVersionIntegrationTest.groovy

            project3.ivy.expectGet()
            project2.ivy.expectGet()
            project2.jar.expectGet()
    
            when:
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants("projectA-1.2.jar")
    
            when:
            server.resetExpectations()
            directoryList.allowGet()
            project3.ivy.expectHead()
            project2.ivy.expectHead()
            project2.jar.expectHead()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/addsScalaSdkAndCompilerLibraries/settings.gradle

    include "project1", "project2", "project3", "project4"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 82 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/repo/org.example/project2/1.0/ivy-1.0.xml

      </configurations>
      <publications>
        <artifact name="project2" type="jar" ext="jar" conf="archives,runtime"/>
      </publications>
      <dependencies>
        <dependency org="org.example" name="project3" rev="1.0" conf="compile-&gt;default"/>
      </dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/addsScalaFacetAndCompilerLibraries/settings.gradle

    include "project1", "project2", "project3", "project4"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 82 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/settings.gradle

    rootProject.name = 'customizing-resolution-conditional-substitution-rule'
    ext.projectNames = ["project1", "project2", "project3"]
    include 'consumer'
    
    projectNames.each { name ->
        if (isIncluded(name)) {
            println "project $name is INTERNAL to this build"
            include name
        } else {
            println "project $name is external to this build"
        }
    }
    
    def isIncluded(String projectName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 593 bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/MultipleTaskOptionsIntegrationTest.groovy

            result.assertTasksExecuted(":task1", ":someTask", ":project2:someTask", ":task2")
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "tasks can be configured with different options"() {
            given:
            createDirs("project2")
            settingsFile << "include 'project2'"
            buildFile << """
                allprojects {
                    task someTask(type: SomeTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/repo/org.example/project2/1.0/ivy-1.0.xml

      </configurations>
      <publications>
        <artifact name="project2" type="jar" ext="jar" conf="archives,runtime"/>
      </publications>
      <dependencies>
        <dependency org="org.example" name="project3" rev="1.0" conf="compile-&gt;default"/>
      </dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromProjectDependenciesTest.groovy

        def project2State = Mock(ProjectState)
        def project1 = Mock(ProjectInternal)
        def project2 = Mock(ProjectInternal)
        def projectId1 = Path.path("project1")
        def projectId2 = Path.path("project2")
        def projectDep1 = Mock(ProjectDependencyInternal) { getIdentityPath() >> projectId1 }
        def projectDep2 = Mock(ProjectDependencyInternal) { getIdentityPath() >> projectId2 }
        def tasks1 = Mock(TaskContainerInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top