Merge pull request #199 from scottwillmoore/add-jvm-languages

Add common JVM languages (groovy, scala, kotlin)
This commit is contained in:
Luke Sampson 2014-11-09 09:25:59 +10:00
commit 158557afc3
3 changed files with 58 additions and 0 deletions

22
groovy.json Normal file
View File

@ -0,0 +1,22 @@
{
"homepage": "http://groovy.codehaus.org/",
"version": "2.3.7",
"license": "Apache 2.0",
"url": "http://dl.bintray.com/groovy/maven/groovy-binary-2.3.7.zip",
"hash": "38d6faaf3cae78d91852ab1be8070a7a7c5d206bd172f2cd7c0bb131e23e2525",
"extract_dir": "groovy-2.3.7",
"bin": [
"bin\\grape.bat",
"bin\\groovy.bat",
"bin\\groovyc.bat",
"bin\\groovyConsole.bat",
"bin\\groovydoc.bat",
"bin\\groovysh.bat",
"bin\\java2groovy.bat",
"bin\\startGroovy.bat"
],
"set_env": {
"GROOVY_HOME": "$dir"
},
"depends": "openjdk"
}

17
kotlin.json Normal file
View File

@ -0,0 +1,17 @@
{
"homepage": "http://kotlinlang.org/",
"version": "0.9.66",
"license": "Apache 2.0",
"url": "https://github.com/JetBrains/kotlin/releases/download/build-0.9.66/kotlin-compiler-0.9.66.zip",
"hash": "b52e6a2cfef8312f13a1106bbe50bf364fc9e20c3a58600bc47987edd602703e",
"extract_dir": "kotlinc",
"bin": [
"bin\\kotlinc.bat",
"bin\\kotlinc-js.bat",
"bin\\kotlinc-jvm.bat"
],
"set_env": {
"KOTLIN_HOME": "$dir"
},
"depends": "openjdk"
}

19
scala.json Normal file
View File

@ -0,0 +1,19 @@
{
"homepage": "http://www.scala-lang.org/",
"version": "2.11.4",
"license": "BSD 3-Clause",
"url": "http://downloads.typesafe.com/scala/2.11.4/scala-2.11.4.zip",
"hash": "b52e6a2cfef8312f13a1106bbe50bf364fc9e20c3a58600bc47987edd602703e",
"extract_dir": "scala-2.11.4",
"bin": [
"bin\\fsc.bat",
"bin\\scala.bat",
"bin\\scalac.bat",
"bin\\scaladoc.bat",
"bin\\scalap.bat"
],
"set_env": {
"SCALA_HOME": "$dir"
},
"depends": "openjdk"
}