-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (31 loc) · 984 Bytes
/
build.gradle
File metadata and controls
39 lines (31 loc) · 984 Bytes
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
plugins {
id 'org.springframework.boot' version "1.5.6.RELEASE"
}
group 'ru.ulmc.telegram'
version '1.0'
apply plugin: 'java'
apply plugin: "org.springframework.boot"
sourceCompatibility = 1.8
ext {
feignVer = "9.5.1"
bootVer = "1.5.6.RELEASE"
cloudVer = "1.2.5.RELEASE"
}
bootRepackage {
mainClass = 'ru.ulmc.telegram.JosephBot'
executable = true
}
repositories {
mavenCentral()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter:$bootVer")
// compile "org.springframework.cloud:spring-cloud-starter-feign:$cloudVer"
compile 'com.github.pengrad:java-telegram-bot-api:3.3.0'
compile "org.projectlombok:lombok:1.16.16"
// compile "io.github.openfeign:feign-core:$feignVer"
// compile "io.github.openfeign:feign-okhttp:$feignVer"
// compile "io.github.openfeign:feign-gson:$feignVer"
// compile "io.github.openfeign:feign-slf4j:$feignVer"
testCompile group: 'junit', name: 'junit', version: '4.12'
}