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
+15
View File
@@ -0,0 +1,15 @@
import kotlin.modules.*
fun project() {
module("kdoc") {
classpath += "dist/kotlinc/lib/intellij-core.jar"
classpath += "dist/kotlinc/lib/kotlin-compiler.jar"
// TODO its a bit sad we can't use patterns here...
addClasspathEntry("dist/kotlinc/lib/pegdown-1.1.0.jar")
addClasspathEntry("dist/kotlinc/lib/parboiled-core-1.0.2.jar")
addClasspathEntry("dist/kotlinc/lib/parboiled-java-1.0.2.jar")
addSourceFiles("src/main/kotlin")
}
}