Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for goodbye (0.1 sec)

  1. platforms/documentation/docs/src/snippets/plugins/multiproject/kotlin/goodbye-c/build.gradle.kts

    plugins {
        id("com.example.goodbye")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 42 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/consuming/tests/customPluginRepositories.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/consuming/groovy/build.gradle

    plugins {
        id 'com.example.hello' version '1.0.0'
        id 'com.example.goodbye' version '1.0.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/resolutionRules/groovy/build.gradle

    plugins {
        id 'com.example.hello' version '1.0.0'
        id 'com.example.goodbye' version '1.0.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/consuming/kotlin/build.gradle.kts

    plugins {
      id("com.example.hello") version "1.0.0"
      id("com.example.goodbye") version "1.0.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 98 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/resolutionRules/kotlin/build.gradle.kts

    plugins {
        id("com.example.hello") version "1.0.0"
        id("com.example.goodbye") version "1.0.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 102 bytes
    - Viewed (0)
  7. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            repo.createLightWeightTag('1.0.1')
            repo.createAnnotatedTag('v1.0.1', 'Release 1.0.1')
            def anotherSource = repo.workTree.file('dir/another.txt')
            anotherSource << 'Goodbye world!'
            c2 = repo.commit('Second Commit')
            repoHead = GitVersionRef.from(repo.head)
            repoSpec = new DefaultGitVersionControlSpec()
            repoSpec.url = repo.url
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/multiproject/kotlin/settings.gradle.kts

    pluginManagement {
      repositories {
          maven(url = "./maven-repo")
      }
    }
    
    // tag::include-subprojects[]
    include("hello-a")
    include("hello-b")
    include("goodbye-c")
    // end::include-subprojects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 231 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/multiproject/groovy/settings.gradle

    pluginManagement {
      repositories {
          maven {
            url './maven-repo'
          }
      }
    }
    
    // tag::include-subprojects[]
    include 'hello-a'
    include 'hello-b'
    include 'goodbye-c'
    // end::include-subprojects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/multiproject/kotlin/build.gradle.kts

    // tag::plugins-on-subprojects[]
    plugins {
        id("com.example.hello") version "1.0.0" apply false
        id("com.example.goodbye") version "1.0.0" apply false
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 192 bytes
    - Viewed (0)
Back to top