summaryrefslogtreecommitdiff
path: root/build.gradle
blob: b7b37ff50976084112dc5b6140514bbf88a97866 (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.7'
    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.7'
    implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:2.6.7'
    implementation 'org.springframework.boot:spring-boot-starter-web:2.6.7'
    implementation 'org.springframework.boot:spring-boot-starter-tomcat:2.6.7'
    testImplementation('org.springframework.boot:spring-boot-starter-test:2.6.7')
    testImplementation 'org.springframework.security:spring-security-test:5.6.3'
}

test {
    useJUnitPlatform()
}