Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for greetings (0.09 sec)

  1. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

                applicationDefaultJvmArgs = ["-Dgreeting.language=en", "-DappId=\${project.name - ':'}"]
            }
            """
    
            when:
            succeeds('startScripts')
    
            then:
            assertGeneratedUnixStartScript('myApp').text.contains '-Dgreeting.language=en'
            assertGeneratedWindowsStartScript('myApp').text.contains '-Dgreeting.language=en'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                    @Input
                    @Optional
                    abstract Property<String> getGreeting();
    
                    @Input
                    Provider<String> message = greeting.map(it -> it + " from Gradle");
    
                    @TaskAction
                    void printMessage() {
                        logger.quiet(message().get());
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/build.gradle

        templates {
            javaAndroidApplication
            structuringSoftwareProjects
            springBootWebApplication {
                target = "app"
            }
            gradlePluginInJava {
                target = "greeting-plugin"
            }
            gradlePluginInJavaInBuildSrc {
                sourceDirectory = gradlePluginInJava.sourceDirectory
                target = "buildSrc"
            }
            buildSrcPluginJavaModuleTransform
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top