Skip to content

Instantly share code, notes, and snippets.

@gauravat16
Created July 9, 2020 12:06
Show Gist options
  • Save gauravat16/c087027024383e50610a0c9916e8609c to your computer and use it in GitHub Desktop.
Save gauravat16/c087027024383e50610a0c9916e8609c to your computer and use it in GitHub Desktop.
Gradle file for RBloom
plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'gaurav.examples'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.redisson', name: 'redisson', version: '3.13.2'
compile group: 'org.ajbrown', name: 'name-machine', version: '1.0.0'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment