Skip to content

Instantly share code, notes, and snippets.

@talfco
Last active March 31, 2019 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talfco/16f2e988693e3c93dfe67fa3c5322c46 to your computer and use it in GitHub Desktop.
Save talfco/16f2e988693e3c93dfe67fa3c5322c46 to your computer and use it in GitHub Desktop.
plugins {
id 'org.springframework.boot' version '2.1.3.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories { mavenCentral() }
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.flowable:flowable-spring-boot-starter-rest:6.4.1'
implementation 'org.flowable:flowable-camel:6.4.1'
implementation 'org.apache.camel:camel-spring-boot-starter:2.23.0'
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'com.h2database:h2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment