Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for grails (0.12 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/spring-boot-application/build.gradle

    plugins {
        id('groovy-gradle-plugin') // <1>
    }
    
    dependencies {
        implementation(platform('com.example.platform:plugins-platform')) // <2>
    
        implementation(project(':commons')) // <3>
    
        implementation('org.springframework.boot:org.springframework.boot.gradle.plugin')  // <4>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 288 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/groovy/build.gradle

    plugins {
        id("org.gradle.sample.download")
    }
    
    download {
        // Can use a block to configure the container contents
        resources {
            register('gradle') {
                uri = uri('https://gradle.org')
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 227 bytes
    - Viewed (0)
  3. testing/performance/src/templates/project-with-source/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    <% if (binding.hasVariable("maxWorkers")) { %>org.gradle.workers.max=${binding.getVariable("maxWorkers")}<% } %>
    compilerMemory=<% if (binding.hasVariable("compilerMemory")) { %>${binding.getVariable("compilerMemory")}<% } else { %>1g<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 742 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/property/groovy/build.gradle

        }
    }
    
    tasks.register('myPropertyTask', MyPropertyTask) {
        messageProperty.set("Hello, Gradle!")
    }
    // end::prop-managed[]
    
    // Provider
    // tag::prov-managed[]
    abstract class MyProviderTask extends DefaultTask {
        final Provider<String> messageProvider = project.providers.provider { "Hello, Gradle!" }
    
        @TaskAction
        void printMessage() {
            println(messageProvider.get())
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/multiThreaded/build.gradle

    import java.util.concurrent.Executors
    import java.util.concurrent.TimeUnit
    import org.gradle.internal.logging.text.StyledTextOutputFactory
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Normal
    
    task log {
        doLast {
            def executor = Executors.newCachedThreadPool()
            (1..10).each { thread ->
                executor.execute {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/groovy/greeting-plugin/build.gradle

    // tag::plugin[]
    plugins {
        // Apply the Java Gradle plugin development plugin to add support for developing Gradle plugins
        id 'java-gradle-plugin'
    }
    
    repositories {
        // Use Maven Central for resolving dependencies.
        // You can declare any Maven/Ivy/file repository here.
        mavenCentral()
    }
    
    dependencies {
        // Use JUnit test framework for unit tests
        testImplementation 'junit:junit:4.13'
    }
    
    gradlePlugin {
    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/tutorial/gradleProperties/groovy/settings.gradle

    rootProject.name = 'properties'
    
    // tag::gradle-properties[]
    // Using the API, provides a lazy Provider<String>
    println providers.gradleProperty('gradlePropertiesProp').get()
    
    // Using Groovy dynamic names
    println gradlePropertiesProp
    println settings.gradlePropertiesProp
    
    // Using Groovy dynamic array notation on `settings`
    println settings['gradlePropertiesProp']
    // end::gradle-properties[]
    
    // tag::properties-with-dots[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 642 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/signing/conditional/groovy/build.gradle

    plugins {
        id 'java'
        id 'maven-publish'
        id 'signing'
    }
    
    group = 'gradle'
    
    // tag::conditional-signing[]
    version = '1.0-SNAPSHOT'
    ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
    
    // end::conditional-signing[]
    publishing {
        publications {
            main(MavenPublication) {
                from components.java
            }
        }
        repositories {
            maven {
                name = "localRepo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 819 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/groovy/gradle.properties

    # tag::gradle-properties[]
    gradlePropertiesProp=gradlePropertiesValue
    gradleProperties.with.dots=gradlePropertiesDottedValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 152 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/nestedObjects/groovy/build.gradle

    plugins {
        id("org.gradle.sample.download")
    }
    
    download {
        resource.uri = uri('https://gradle.org')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 108 bytes
    - Viewed (0)
Back to top