Added build file for all examples.

This commit is contained in:
Erik C. Thauvin 2018-07-05 17:39:56 -07:00
parent d9e0acef6c
commit 144868855f
6 changed files with 42 additions and 3 deletions

5
examples/build.gradle Normal file
View file

@ -0,0 +1,5 @@
task run {
dependsOn(
"java:clean", "java:run",
"kotlin:clean", "kotlin:run", "kotlin:runJava")
}