Skip to content

Commit

Permalink
Put DSE dirs in classpath
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Berglund committed Jun 25, 2014
1 parent 047da1d commit 36eabd7
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 @@ -9,13 +9,15 @@ repositories {

dependencies {
compile fileTree("${dseHome}/resources")
compile fileTree("${dseHome}/lib")
}


task convert(type: JavaExec) {
main = 'Csv2SSTable'
args = [file('data.txt'), file('outputs/')]
classpath = runtimeClasspath + files("${dseHome}/resources/cassandra/conf/")
classpath = runtimeClasspath +
files("${dseHome}/resources/cassandra/conf/") +
files("${dseHome}/resources/dse/conf/")
}

task wrapper(type: Wrapper) {
Expand Down

0 comments on commit 36eabd7

Please sign in to comment.