Skip to content

Commit

Permalink
jarek/6869: language version upgrades (#6877)
Browse files Browse the repository at this point in the history
* #6869: language version upgrades

* #6869: upgrade kotlin version 1.2.21
  • Loading branch information
jaroslawmalekcodete authored and scottdraves committed Feb 19, 2018
1 parent dc36f79 commit 56653e6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion kernel/clojure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ repositories {

dependencies {
provided project(':base')
compile group: 'org.clojure', name: 'clojure', version: '1.8.0'
compile group: 'org.clojure', name: 'clojure', version: '1.9.0'
compile group: 'com.cemerick', name: 'pomegranate', version: '0.3.1'

testCompile project(':base').sourceSets.test.output
Expand Down
8 changes: 4 additions & 4 deletions kernel/kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ repositories {

dependencies {
provided project(':base')
compile group: 'org.jetbrains.kotlin', name: 'kotlin-compiler-embeddable', version: '1.2.0'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-script-runtime', version: '1.2.0'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-runtime', version: '1.2.0'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: '1.2.0'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-compiler-embeddable', version: '1.2.21'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-script-runtime', version: '1.2.21'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-runtime', version: '1.2.21'
compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: '1.2.21'

testCompile project(':base').sourceSets.test.output
}
Expand Down
8 changes: 6 additions & 2 deletions kernel/scala/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,18 @@ repositories {

dependencies {
provided project(':base')
compile group: 'org.scala-lang', name: 'scala-compiler', version: '2.11.11'
compile group: 'org.scala-lang', name: 'scala-library', version: '2.11.11'
compile group: 'org.scala-lang', name: 'scala-compiler', version: '2.11.12'
compile group: 'org.scala-lang', name: 'scala-library', version: '2.11.12'
compile group: 'jline', name: 'jline', version: '2.12'

testCompile group: 'org.scalatest', name: 'scalatest_2.11', version: '3.0.4'
testCompile project(':base').sourceSets.test.output
}

compileScala {
scalaCompileOptions.additionalParameters = ['-target:jvm-1.8']
}

jar {
manifest {
attributes "Main-Class": "$mainClassName"
Expand Down

0 comments on commit 56653e6

Please sign in to comment.