Advertisement
cinnamonandrew

build.gradle in client

May 25th, 2020
1,188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.87 KB | None | 0 0
  1. plugins {
  2.     id 'org.springframework.boot' version '2.2.6.RELEASE'
  3.     id 'io.spring.dependency-management' version '1.0.9.RELEASE'
  4.     id 'java'
  5. }
  6.  
  7. group = 'com.mpp'
  8. version = '1.0.0'
  9. sourceCompatibility = JavaVersion.VERSION_11
  10. targetCompatibility = JavaVersion.VERSION_11
  11.  
  12. configurations {
  13.     compileOnly {
  14.         extendsFrom annotationProcessor
  15.     }
  16. }
  17.  
  18. repositories {
  19.     mavenCentral()
  20. }
  21.  
  22. dependencies {
  23.     implementation project(':common')
  24.  
  25.     implementation 'org.springframework.boot:spring-boot-starter'
  26.     implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  27.     implementation 'org.springframework.boot:spring-boot-starter-web'
  28.  
  29.     testImplementation('org.springframework.boot:spring-boot-starter-test') {
  30.         exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  31.     }
  32. }
  33.  
  34. test {
  35.     useJUnitPlatform()
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement