Сделал приложение. простой REST сервис на Spring Boot. Среда разработки - Intelij Idea
При нажатии на сборку проекта(bootRun) проект очень долго собирается, целый час прождал, но так и не дождался, хотя на стадии
Started TestappApplication in 5.718 seconds (JVM running for 6.171)
проект запускается и все работает, но в панели Run всё ещё крутится значок сборки проекта. Это при том,что у меня зависимостей всего пару штук
Как можно исправить,чтобы проект быстро собирался?
Build.Gradle:
plugins {
id 'org.springframework.boot' version '2.2.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'com.test'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.liquibase:liquibase-core'
runtimeOnly 'org.postgresql:postgresql'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}
Окно настроек билда gradle:
Вкладка Run: