Advertisement
the_cec

lombok-issue_build.gradle

Apr 8th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.77 KB | None | 0 0
  1. buildscript {
  2.     ext {
  3.         springBootVersion = '1.5.2.RELEASE'
  4.     }
  5.     repositories {
  6.         mavenCentral()
  7.     }
  8.     dependencies {
  9.         classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
  10.     }
  11. }
  12.  
  13. apply plugin: 'java'
  14. apply plugin: 'eclipse'
  15. apply plugin: 'org.springframework.boot'
  16.  
  17. version = '0.0.1-SNAPSHOT'
  18. sourceCompatibility = 1.8
  19.  
  20. repositories {
  21.     mavenCentral()
  22. }
  23.  
  24.  
  25. dependencies {
  26.     compile('org.springframework.boot:spring-boot-starter-data-rest')
  27.     compile('org.springframework.boot:spring-boot-starter-data-jpa')
  28.     compile('mysql:mysql-connector-java')
  29.     compile 'org.projectlombok:lombok:1.16.6'
  30.    
  31.     testCompile('org.springframework.boot:spring-boot-starter-test')
  32.     testCompile('org.springframework.restdocs:spring-restdocs-mockmvc')
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement