Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 298 for project1 (0.11 sec)

  1. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/groovy/settings.gradle

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

    rootProject.name = "ivy-publish-java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 70 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/groovy/build.gradle

                url layout.buildDirectory.dir('repo')
            }
        }
    // tag::customize-identity[]
        publications {
            ivy(IvyPublication) {
                organisation = 'org.gradle.sample'
                module = 'project1-sample'
                revision = '1.1'
                descriptor.status = 'milestone'
                descriptor.branch = 'testing'
                descriptor.extraInfo 'http://my.namespace', 'myElement', 'Some value'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 660 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/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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/kotlin/build.gradle.kts

            }
        }
    // tag::customize-identity[]
        publications {
            create<IvyPublication>("ivy") {
                organisation = "org.gradle.sample"
                module = "project1-sample"
                revision = "1.1"
                descriptor.status = "milestone"
                descriptor.branch = "testing"
                descriptor.extraInfo("http://my.namespace", "myElement", "Some value")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 678 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/TaskNameResolver.java

            return project.getTasks().getNames();
        }
    
        private static boolean hasTask(String taskName, ProjectInternal project) {
            return project.getTasks().getNames().contains(taskName) || project.getTasks().findByName(taskName) != null;
        }
    
        private static TaskInternal getExistingTask(ProjectInternal project, String taskName) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top