plugins { id 'org.springframework.boot' version '2.6.1' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } group = 'com.mavlushechka' version = '0.0.1-SNAPSHOT' 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 'javax.mail:mail:1.5.0-b01' implementation 'com.google.cloud.tools:appengine-maven-plugin:2.4.4' implementation 'org.postgresql:postgresql' } test { useJUnitPlatform() }