added a basic working JS compiler maven plugin (though it doesn't currently let you specify any library files to compile)

This commit is contained in:
James Strachan
2012-03-29 21:04:24 +01:00
parent 04905c106a
commit 9d1a3873df
6 changed files with 46 additions and 7 deletions
@@ -1,7 +1,9 @@
package sample
class Hello {
var x = 0
fun doSomething(): Unit {
println("Hello world!")
x++
}
}