Advertisement
Guest User

Untitled

a guest
Oct 14th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.32 KB | None | 0 0
  1. plugins {
  2.     id 'io.franzbecker.gradle-lombok' version '1.14'
  3.     id 'java'
  4. }
  5.  
  6. group 'com'
  7. version '1.0-SNAPSHOT'
  8. sourceCompatibility = 1.8
  9.  
  10. repositories {
  11.     mavenCentral()
  12. }
  13.  
  14. dependencies {
  15.     testCompile group: 'junit', name: 'junit', version: '4.12'
  16. }
  17.  
  18. lombok {
  19.     version = '1.18.2'
  20.     sha256 = ""
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement