-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (36 loc) · 1.67 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
plugins {
id 'org.springframework.boot' version '2.4.1'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'serejka.telegram.bot'
version = '1.0'
sourceCompatibility = '15'
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-security'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.4.1'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.18'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0'
implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '3.0.0'
implementation group: 'org.hibernate', name: 'hibernate-search-orm', version: '5.11.8.Final'
compile group: 'org.telegram', name: 'telegrambots-spring-boot-starter', version: '4.9.2'
compileOnly 'org.projectlombok:lombok'
// compile group: 'com.omertron', name: 'themoviedbapi', version: '4.3'
compile group: 'info.movito', name: 'themoviedbapi', version:'1.10'
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
}
test {
useJUnitPlatform()
}