I saw examples about how to do it using maven, but I can’t find anything for gradle.
1 Like
@nightlybuild for Gradle you have to update by yourself. refer the below,
buildscript {
ext {
springBootVersion = '2.2.1.RELEASE'
camundaBPMStarterVersion = '3.4.1'
camundaBPMVersion = '7.12.0'
awsJavaSdkVersion = '1.11.699'
gradleDockerVersion = '1.2'
}
//other configs
}
dependencyManagement {
imports {
mavenBom 'org.camunda.bpm:camunda-bom:7.12.0'
}
}
dependencies {
compile("org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter-rest:${camundaBPMStarterVersion}")
compile("org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter-webapp:${camundaBPMStarterVersion}")
compile group: 'org.camunda.template-engines', name: 'camunda-template-engines-freemarker', version: '1.1.0'
compile group: 'org.camunda.commons', name: 'camunda-commons-typed-values', version: '7.12.0'
compile group: 'org.camunda.bpm', name: 'camunda-engine-plugin-connect', version: '7.12.0'
compile group: 'org.camunda.connect', name: 'camunda-connect-connectors-all', version: '1.2.2'
compile group: 'org.camunda.connect', name: 'camunda-connect-core', version: '1.2.2'
compile group: 'org.camunda.bpm', name: 'camunda-engine-plugin-spin', version: '7.12.0'
compile group: 'org.camunda.spin', name: 'camunda-spin-core', version: '1.7.5'
compile group: 'org.camunda.spin', name: 'camunda-spin-dataformat-all', version: '1.7.5'
compile group: 'org.camunda.bpm.extension', name: 'camunda-bpm-mail-core', version: '1.2.0'
}
2 Likes
@aravindhrs Thank you.