Sha256: 259eb5905b41dba3bd6828a57bde3f168ce7e8e7a3a390452e3cd701bb33b729
Contents?: true
Size: 756 Bytes
Versions: 89
Compression:
Stored size: 756 Bytes
Contents
subprojects { afterEvaluate { Project project -> sourceSets { // Verify that the tests are working by running them against the example code. // By replacing the "main" sourceSet with the example code we avoid any collisions // with solution code that may have been included as a "starter" (e.g. etl). main { kotlin.srcDirs = ["src/example/kotlin"] } project["compileKotlin"].doFirst { compileTask -> println " (source = " + compileTask.source.asPath + ")" } starterSource { kotlin.srcDirs = ["src/main/kotlin"] } project["compileStarterSourceKotlin"].doFirst { compileTask -> println " (source = " + compileTask.source.asPath + ")" } } } }
Version data entries
89 entries across 89 versions & 1 rubygems