diff options
author | mavlushechka <mavlushechka@gmail.com> | 2021-11-12 21:31:54 +0500 |
---|---|---|
committer | mavlushechka <mavlushechka@gmail.com> | 2021-11-12 21:31:54 +0500 |
commit | 8d284e1690faba5c0f834a07bac81e1ee00d515f (patch) | |
tree | dd587e71f8c091c1262a84cd2c7e1dd7cd7e4226 /build.gradle |
Initializing
Diffstat (limited to 'build.gradle')
-rwxr-xr-x | build.gradle | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100755 index 0000000..de2cc91 --- /dev/null +++ b/build.gradle @@ -0,0 +1,28 @@ +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.5.6' + implementation 'org.springframework.boot:spring-boot-starter-security:2.5.6' + implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:2.5.6' + implementation 'org.springframework.boot:spring-boot-starter-web:2.5.6' + implementation 'org.springframework.boot:spring-boot-starter-tomcat:2.5.6' + testImplementation('org.springframework.boot:spring-boot-starter-test:2.5.6') { + exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' + } + testImplementation 'org.springframework.security:spring-security-test:5.5.2' +} + +test { + useJUnitPlatform() +}
\ No newline at end of file |