Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. plugins {
  2. id 'org.springframework.boot' version '2.2.1.RELEASE'
  3. id 'io.spring.dependency-management' version '1.0.8.RELEASE'
  4. id 'java'
  5. }
  6.  
  7. group = 'com.example'
  8. version = '0.0.1-SNAPSHOT'
  9. sourceCompatibility = '1.8'
  10.  
  11. repositories {
  12. mavenCentral()
  13. }
  14.  
  15. dependencies {
  16. implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
  17. implementation 'org.springframework.boot:spring-boot-starter-web'
  18. testImplementation('org.springframework.boot:spring-boot-starter-test') {
  19. exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  20. }
  21. }
  22.  
  23. test {
  24. useJUnitPlatform()
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement