-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
50 lines (44 loc) · 1.32 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
42
43
44
45
46
47
48
49
50
plugins {
id 'java'
id 'maven-publish'
id 'org.springframework.boot' version '2.7.5'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id 'war'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.5'
implementation 'org.springframework.boot:spring-boot-starter-test:2.7.5'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.5'
implementation 'org.springdoc:springdoc-openapi-ui:1.6.13'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.postgresql:postgresql:42.3.8'
// implementation 'org.liquibase:liquibase-core'
implementation 'com.github.pengrad:java-telegram-bot-api:6.3.0'
}
group = 'heaven'
version = '0.0'
description = 'Skypro education team project'
java.sourceCompatibility = JavaVersion.VERSION_11
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
tasks.test {
useJUnitPlatform {
includeEngines("junit-jupiter")
}
}