Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 151 for Change (0.1 sec)

  1. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/groovy/src/hawking.txt

    Intelligence is the ability to adapt to change....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:36:36 UTC 2024
    - 48 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/maven-publish/quickstart/kotlin/build.gradle.kts

                from(components["java"])
            }
        }
    }
    // end::publish-component[]
    // tag::repositories[]
    publishing {
        repositories {
            maven {
                // change to point to your repo, e.g. http://my.org/repo
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 602 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/kotlin/library/build.gradle.kts

    plugins {
        id("java-library")
        id("maven-publish")
    }
    
    repositories {
        mavenCentral()
    }
    
    publishing {
        repositories {
            maven {
                url = uri("${rootProject.buildDir}/repo") // change to point to your repo, e.g. http://my.org/repo
            }
        }
    }
    
    dependencies {
        api("org.slf4j:slf4j-api:1.7.10")
    }
    
    // tag::specify-relocation[]
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/groovy/build.gradle

        // Don't need to update the consumer.inputFile property. This is automatically updated as producer.outputFile changes
        outputFile = layout.buildDirectory.file('file.txt')
    }
    
    // Change the build directory.
    // Don't need to update producer.outputFile and consumer.inputFile. These are automatically updated as the build directory changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/kotlin/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/kotlin/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ivy-publish/quickstart/kotlin/build.gradle.kts

            create<IvyPublication>("ivyJava") {
                from(components["java"])
            }
        }
    // end::publish-component[]
    // tag::repositories[]
        repositories {
            ivy {
                // change to point to your repo, e.g. http://my.org/repo
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    // tag::publish-component[]
    }
    // end::publish-component[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/groovy/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/build.gradle.kts

        `kotlin-dsl`
    // end::apply[]
        `maven-publish`
    // tag::apply[]
    }
    // end::apply[]
    
    group = "com.myorg.conventions"
    version = "1.0"
    
    publishing {
        repositories {
            maven {
                // change to point to your repo, e.g. http://my.org/repo
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    }
    
    tasks.publish {
        dependsOn("check")
    }
    // end::publish[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 761 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/build.gradle

    // end::apply[]
        id 'maven-publish'
        id 'java'
    // tag::apply[]
    }
    // end::apply[]
    
    group = 'com.myorg.conventions'
    version = '1.0'
    
    publishing {
        repositories {
            maven {
                // change to point to your repo, e.g. http://my.org/repo
                url = layout.buildDirectory.dir("repo")
            }
        }
    }
    
    tasks.named('publish') {
        dependsOn('check')
    }
    
    // end::publish[]
    
    testing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 832 bytes
    - Viewed (0)
Back to top