Skip to content

Commit

Permalink
* Exclude jline dependency to avoid conflict with the one in snappy j…
Browse files Browse the repository at this point in the history
…ars.
  • Loading branch information
Amogh Shetkar committed Nov 6, 2018
1 parent 25a35bc commit 15eac58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

group 'io.snappydata'
version '0.7.3.3'
version '0.7.3.4'

apply plugin: 'java'
apply plugin: 'wrapper'
Expand Down Expand Up @@ -64,7 +64,9 @@ configurations.archives.with {
dependencies {
compile group: 'org.apache.zeppelin', name: 'zeppelin-interpreter', version: zeppelinVersion
compile group: 'org.apache.zeppelin', name: 'zeppelin-spark_' + scalaBinaryVersion, version: zeppelinVersion
compile group: 'org.apache.zeppelin', name: 'zeppelin-jdbc', version: zeppelinVersion
compile(group: 'org.apache.zeppelin', name: 'zeppelin-jdbc', version: zeppelinVersion) {
exclude(group: 'jline', module: 'jline')
}

compileOnly "io.snappydata:snappydata-core_" + scalaBinaryVersion + ":" + snappyDataVersion
compileOnly "org.scala-lang:scala-library:" + scalaVersion
Expand Down

0 comments on commit 15eac58

Please sign in to comment.