This commit is contained in:
Christoph Kroczek
2019-07-13 19:45:50 +02:00
parent 196156459e
commit 930273c0a7
3 changed files with 26 additions and 13 deletions

View File

@@ -0,0 +1,10 @@
plugins {
java
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
version = "1.2.1"

View File

@@ -0,0 +1,15 @@
package main.java.hello;
/**
* HelloGradleKotlin
*/
public class HelloGradleKotlin {
private static final String HELLO_WORLD = "Hello World";
public static void main(String[] args) {
System.out.println(HELLO_WORLD);
System.out.println("test");
System.out.println("test4");
}
}