Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for myApp (0.08 sec)

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

            when:
            succeeds('startScripts')
    
            then:
            File unixStartScript = assertGeneratedUnixStartScript('myApp')
            unixStartScript.text == 'myApp start up script for UN*X'
            File windowsStartScript = assertGeneratedWindowsStartScript('myApp.bat')
            windowsStartScript.text == 'myApp start up script for Windows'
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative)
    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/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

     * <p>
     * Example:
     * <pre class='autoTested'>
     * task createStartScripts(type: CreateStartScripts) {
     *   outputDir = file('build/sample')
     *   mainClass = 'org.gradle.test.Main'
     *   applicationName = 'myApp'
     *   classpath = files('path/to/some.jar')
     * }
     * </pre>
     * <p>
     * Note: the Gradle {@code "application"} plugin adds a pre-configured task of this type named {@code "startScripts"}.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top