blob: 3be6d81e467465afc945cf1681dd072aa5ae033e (
plain)
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
|
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()
}
|