-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
41 lines (31 loc) · 1.03 KB
/
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
34
35
36
37
38
39
40
41
group 'com.stevesoltys'
version '0.2.1'
apply plugin: 'java'
sourceCompatibility = 1.8
buildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE")
}
repositories {
mavenCentral()
}
}
apply plugin: 'spring-boot'
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.google.code.gson', name: 'gson'
compile group: 'org.pircbotx', name: 'pircbotx', version: '2.1'
compile group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.4.0'
compile group: 'com.squareup.retrofit2', name: 'converter-scalars', version: '2.4.0'
compile group: 'org.jsoup', name: 'jsoup', version: '1.12.1'
compile('org.telegram:telegrambots:6.9.0') {
exclude group: 'com.google.guava'
}
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.4.0.RELEASE'
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '1.4.0.RELEASE'
}
test {
useJUnitPlatform()
}