diff --git a/tools/gradle/simplegradlekotlin/README.md b/tools/gradle/simplegradlekotlin/README.md new file mode 100644 index 0000000..e7ecf2a --- /dev/null +++ b/tools/gradle/simplegradlekotlin/README.md @@ -0,0 +1,12 @@ +# About this kata +Simple handwritten Gradle Java project written in Kotlin. + +# Problem description + +Provide a gradle project for HelloGradleKotlin class. The gradle project should support compliation and application execution. + + +# Clues + +Java and application gradle plugins shall be used + diff --git a/tools/gradle/simplegradlekotlin/build.gradle.kts b/tools/gradle/simplegradlekotlin/build.gradle.kts index 0653533..6f84e46 100644 --- a/tools/gradle/simplegradlekotlin/build.gradle.kts +++ b/tools/gradle/simplegradlekotlin/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - java + } java { @@ -7,4 +7,8 @@ java { targetCompatibility = JavaVersion.VERSION_1_8 } -version = "1.2.1" \ No newline at end of file +application { + mainClassName = "" +} + +version = "1.0.0" \ No newline at end of file