Refactor scripting examples:

- split into script def and host part
- remove bad dependencies
- organize it in a way that should be typical for user scenarios
This commit is contained in:
Ilya Chernikov
2018-03-23 16:08:22 +01:00
parent 7cca1a72d3
commit 2c3a50e4b3
22 changed files with 97 additions and 102 deletions
@@ -0,0 +1,5 @@
@file:DependsOn("abracadabra")
println("Hello, World!")
@@ -0,0 +1,7 @@
@file:DependsOn("junit:junit:4.11")
org.junit.Assert.assertTrue(true)
println("Hello, World!")
@@ -0,0 +1,5 @@
org.junit.Assert.assertTrue(true)
println("Hello, World!")