Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for HelloApp (3.11 sec)

  1. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/src/main/java/org/example/app/HelloApp.java

    package org.example.app;
    
    /**
     * A simple Java application that prints "Hello, world!" to stdout.
     */
    public class HelloApp {
        /**
         * Application entry point.
         */
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/antMigration/multiProject/groovy/web/src/org/example/app/HelloApp.java

    package org.example.app;
    
    import org.example.util.StringUtils;
    
    public class HelloApp {
        public static void main(String[] args) {
            System.out.println(StringUtils.getStandardGreeting());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 204 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/antMigration/importBuild/kotlin/src/org/example/app/HelloApp.java

    package org.example.app;
    
    public class HelloApp {
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 148 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/antMigration/importBuild/groovy/src/org/example/app/HelloApp.java

    package org.example.app;
    
    public class HelloApp {
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 148 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/antMigration/multiProject/kotlin/web/src/org/example/app/HelloApp.java

    package org.example.app;
    
    import org.example.util.StringUtils;
    
    public class HelloApp {
        public static void main(String[] args) {
            System.out.println(StringUtils.getStandardGreeting());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 204 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/src/main/java/org/example/app/HelloApp.java

    package org.example.app;
    
    /**
     * A simple Java application that prints "Hello, world!" to stdout.
     */
    public class HelloApp {
        /**
         * Application entry point.
         */
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/libs/our-custom.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Ant-Version: Apache Ant 1.9.11 Created-By: 9.0.7.1+1 (Azul Systems, Inc.) org/example/app/HelloApp.class package org.example.app; public synchronized class HelloApp { public void HelloApp(); static void main(String[]); }...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/libs/our-custom.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Ant-Version: Apache Ant 1.9.11 Created-By: 9.0.7.1+1 (Azul Systems, Inc.) org/example/app/HelloApp.class package org.example.app; public synchronized class HelloApp { public void HelloApp(); static void main(String[]); }...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/antmigration/SamplesAntImportIntegrationTest.groovy

            when:
            succeeds('javadocJar', 'unpackJavadocs')
    
            then: "The HTML Javadoc files are unpacked to the 'dist' directory"
            dslDir.file('build/dist/org/example/app/HelloApp.html').isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("antMigration/multiProject")
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top