Skip to content

Instantly share code, notes, and snippets.

@chbatey
Created March 17, 2015 16:34
Show Gist options
  • Save chbatey/ce468dc108091e0e056b to your computer and use it in GitHub Desktop.
Save chbatey/ce468dc108091e0e056b to your computer and use it in GitHub Desktop.
build script dependencies
buildscript {
ext {
springBootVersion = '1.2.1.RELEASE'
cassandraDriverVersion = "2.1.4"
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("com.datastax.cassandra:cassandra-driver-core:${cassandraDriverVersion}")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment