refactored the maven project structure so that things are in a simpler tree structure to avoid folks getting lost

This commit is contained in:
James Strachan
2012-04-05 16:20:06 +01:00
parent 937b5ac16d
commit a40f9ee9b1
74 changed files with 99 additions and 45 deletions
+12
View File
@@ -0,0 +1,12 @@
import kotlin.modules.*
fun project() {
module("apidocs") {
classpath += "../lib/junit-4.9.jar"
addSourceFiles("../stdlib/src")
addSourceFiles("../kunit/src/main/kotlin")
addSourceFiles("../kotlin-jdbc/src/main/kotlin")
//addSourceFiles("../kotlin-swing/src/main/kotlin")
}
}