buildscript { ext { versionSpringBoot = '2.3.8.RELEASE' } repositories { mavenLocal() mavenCentral() } dependencies { classpath group: 'org.springframework.boot', name: 'spring-boot-gradle-plugin', version: versionSpringBoot } } group 'ru.ulstu' version '0.0.1' apply plugin: 'java' apply plugin: 'org.springframework.boot' apply plugin: 'io.spring.dependency-management' sourceCompatibility = 11 targetCompatibility = 11 jar { archiveBaseName = 'git-extractor' } compileJava { options.encoding = "UTF-8" } repositories { mavenLocal() mavenCentral() } configurations { compile.exclude module: "spring-boot-starter-tomcat" compile.exclude module: "jquery" compile.exclude module: "popper.js" compile.exclude module: "follow-redirects" compile.exclude module: "is-buffer" } dependencies { compile group: 'org.springframework.boot', name: 'spring-boot-starter-web' compile group: 'org.springframework.boot', name: 'spring-boot-starter-jetty' compile group: 'com.fasterxml.jackson.module', name: 'jackson-module-afterburner' compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-hibernate5' compile group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0' compile group: 'com.ibm.icu', name: 'icu4j', version: '63.1' testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test' } wrapper { gradleVersion = '6.8.2' }