Skip to content

Instantly share code, notes, and snippets.

@mplacona
Created May 13, 2017 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mplacona/7c40bb0ef95470c22b7cf6c64ecee1ea to your computer and use it in GitHub Desktop.
Save mplacona/7c40bb0ef95470c22b7cf6c64ecee1ea to your computer and use it in GitHub Desktop.
group 'uk.co.placona'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.1'
ext.spring_boot_version = '1.4.3.RELEASE'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.springframework.boot:spring-boot-gradle-plugin:$spring_boot_version"
}
}
apply plugin: 'kotlin'
apply plugin: 'org.springframework.boot'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile "org.springframework.boot:spring-boot-starter-web:$spring_boot_version"
compile group: 'com.twilio.sdk', name: 'twilio', version: '7.9.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment