blob: bb19b4fc8221867f12a0b0ee8374fca208aea525 (
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
26
|
plugins {
id 'org.springframework.boot' version '2.5.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.mavlushechka'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb:2.6.1'
implementation 'org.springframework.boot:spring-boot-starter-security:2.6.1'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:2.6.1'
implementation 'org.springframework.boot:spring-boot-starter-web:2.6.1'
implementation 'org.springframework.boot:spring-boot-starter-tomcat:2.6.1'
testImplementation('org.springframework.boot:spring-boot-starter-test:2.6.1')
testImplementation 'org.springframework.security:spring-security-test:5.5.2'
}
test {
useJUnitPlatform()
}
|