Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jarek/6869: language version upgrades #6877

Merged
merged 2 commits into from
Feb 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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