Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 151 for Change (0.13 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/kotlin/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/antLoadfileWithMethod/kotlin/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    The `init` task uses the (also built-in) `wrapper` task to create a Gradle wrapper script, `gradlew`.
    
    The first step is to create a folder for the new project and change directory into it.
    
    [listing.terminal.sample-command]
    ----
    \$ mkdir demo
    \$ cd demo
    ----
    
    == Run the init task
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/descriptor-customization/kotlin/build.gradle.kts

                        fromResolutionResult()
                    }
                }
            }
        }
    // end::versions-resolved[]
    // end::customize-descriptor[]
        repositories {
            ivy {
                // change to point to your repo, e.g. http://my.org/repo
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    }
    
    // tag::generate[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/customize-identity/groovy/library/build.gradle

    plugins {
        id 'java-library'
        id 'maven-publish'
    }
    
    repositories {
        mavenCentral()
    }
    
    publishing {
        repositories {
            maven {
                url = "${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::customize-identity[]
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 604 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/fileAndDirectoryProperty/kotlin/build.gradle.kts

        configFile = layout.projectDirectory.file("src/config.txt")
        outputDir = layout.buildDirectory.dir("generated-source")
    }
    
    // Change the build directory
    // Don't need to reconfigure the task properties. 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.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/kotlin/build.gradle.kts

        // 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)
  8. platforms/documentation/docs/src/snippets/ivy-publish/conditional-publishing/groovy/build.gradle

                from components.java
            }
            binaryAndSources(IvyPublication) {
                from components.java
                artifact sourcesJar
            }
        }
        repositories {
            // change URLs to point to your repos, e.g. http://my.org/repo
            ivy {
                name "external"
                url layout.buildDirectory.dir('repos/external')
            }
            ivy {
                name "internal"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/listProperty/groovy/build.gradle

    producerOne.configure { outputFile = layout.buildDirectory.file('one.txt') }
    producerTwo.configure { outputFile = layout.buildDirectory.file('two.txt') }
    
    // Change the build directory.
    // Don't need to update the task properties. 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.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/groovy/build.gradle

                from components.java
            }
            binaryAndSources(MavenPublication) {
                from components.java
                artifact sourcesJar
            }
        }
        repositories {
            // change URLs to point to your repos, e.g. http://my.org/repo
            maven {
                name = 'external'
                url = layout.buildDirectory.dir('repos/external')
            }
            maven {
                name = 'internal'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top