/
vladimirvp97
/
SberTechTestovoe
Обзор
Документация
Войти
/
vladimirvp97
/
SberTechTestovoe
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
build.gradle
42 строки
958 B
Vladimir
done
25 янв 2024, 15:20
25 янв 2024, 15:20
1bc06c4
Код
Авторство
О чём код?
plugins { id 'java' id 'org.springframework.boot' version '3.2.0' id 'io.spring.dependency-management' version '1.1.4' } group = 'com.example' version = '0.0.1-SNAPSHOT' java { sourceCompatibility = '17' } configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' implementation('org.springframework.boot:spring-boot-starter-validation') testImplementation 'org.springframework.boot:spring-boot-starter-test' implementation 'mysql:mysql-connector-java:8.0.26' compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0' } tasks.named('test') { useJUnitPlatform() }