-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.gradle
33 lines (26 loc) · 863 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
group 'uk.co.placona'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.1.3-2'
ext.spring_boot_version = '1.5.4.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()
jcenter()
}
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.12.0'
testCompile("org.springframework.boot:spring-boot-starter-test")
compile 'org.mockito:mockito-core:2.8.47'
}