update
This commit is contained in:
12
tools/gradle/simplegradlekotlin/README.md
Normal file
12
tools/gradle/simplegradlekotlin/README.md
Normal file
@@ -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
|
||||||
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
java
|
|
||||||
}
|
}
|
||||||
|
|
||||||
java {
|
java {
|
||||||
@@ -7,4 +7,8 @@ java {
|
|||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
|
|
||||||
version = "1.2.1"
|
application {
|
||||||
|
mainClassName = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
version = "1.0.0"
|
||||||
Reference in New Issue
Block a user