Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 484 for project2 (0.09 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/tests/showJarFilesLocal.sample.conf

    executable: gradle
    args: "-DuseLocal=project1,project2 showJarFiles -q"
    expected-output-file: showJarFilesLocal.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 146 bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/settings.gradle

    include 'project1', 'project2'
    
    println 'settings quiet out'
    logging.captureStandardOutput(LogLevel.INFO)
    println 'settings info out'
    
    logger.lifecycle('settings lifecycle log')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 211 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/misc/groovy/project2/settings.gradle

    rootProject.name = 'project2'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/misc/kotlin/project2/settings.gradle.kts

    rootProject.name = "project2"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/kotlin/project1/build.gradle.kts

    plugins {
        id("myproject.publishing-conventions")
    }
    
    description = "The first project"
    
    dependencies {
        implementation("junit:junit:4.13")
        implementation(project(":project2"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 188 bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

            testFile('project1/build.xml') << """
    <project>
        <target name='target1'>
            <mkdir dir='build'/>
            <touch file='build/target1.txt'/>
        </target>
    </project>
    """
            testFile('project2/build.xml') << """
    <project>
        <target name='target2'>
            <mkdir dir='build'/>
            <touch file='build/target2.txt'/>
        </target>
    </project>
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/consumer/build.gradle

    /*
     * This sample demonstrates the ability to selectively include projects
     * from the local directory rather than using an external dependency.
     *
     * By default all projects are considered external and are picked up
     * from the "repo" ivy repository.  To include local projects in a build,
     * set the "useLocal" system property on the gradle command line:
     *
     *   gradle -DuseLocal=project1,project2 :showJarFiles
     *
     */
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            ]
            hasProjectLibrary('root.ipr', 'scala-sdk-3.0.1', [], [], [], scalaLibs + scaladocLibsAndDeps)
            hasScalaSdk('project1/project1.iml', '2.11.2')
            hasScalaSdk('project2/project2.iml', '2.10.0')
            hasScalaSdk('project3/project3.iml', '2.11.2')
            hasScalaSdk('project4/project4.iml', '3.0.1')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void addsScalaFacetAndCompilerLibraries() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/consumer/build.gradle.kts

    /*
     * This sample demonstrates the ability to selectively include projects
     * from the local directory rather than using an external dependency.
     *
     * By default all projects are considered external and are picked up
     * from the "repo" ivy repository.  To include local projects in a build,
     * set the "useLocal" system property on the gradle command line:
     *
     *   gradle -DuseLocal=project1,project2 :showJarFiles
     *
     */
    plugins {
    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/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/repo/org.example/project1/1.0/ivy-1.0.xml

      </configurations>
      <publications>
        <artifact name="project1" type="jar" ext="jar" conf="archives,runtime"/>
      </publications>
      <dependencies>
        <dependency org="org.example" name="project2" 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)
Back to top