Created
March 17, 2015 16:36
Tasks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.datastax.driver.core.*; | |
task buildSchema << { | |
Cluster cluster = Cluster.builder().addContactPoint("localhost").build() | |
Session session = cluster.connect() | |
new File("src/main/resources/schema/tables.cql").eachLine { line -> | |
println("Executing $line") | |
session.execute(line) | |
} | |
} | |
task dropSchema << { | |
Cluster cluster = Cluster.builder().addContactPoint("localhost").build() | |
Session session = cluster.connect("killrauction") | |
session.execute("drop keyspace killrauction") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment