-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (33 loc) · 1.48 KB
/
build.gradle
File metadata and controls
47 lines (33 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
plugins {
id 'org.springframework.boot' version '2.2.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'io.remedymatch.engine'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter:3.4.1'
implementation 'org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter-webapp:3.4.1'
implementation 'org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter-rest:3.4.1'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'javax.activation:activation:1.1.1'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
compileOnly 'org.projectlombok:lombok:1.18.12'
runtime 'org.postgresql:postgresql:42.2.8'
runtimeOnly 'mysql:mysql-connector-java:8.0.18'
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '2.2.6.RELEASE'
testImplementation 'org.camunda.bpm.assert:camunda-bpm-assert:5.0.0'
testCompile group: 'junit', name: 'junit', version: '4.13'
testCompile 'org.assertj:assertj-core:3.15.0'
testCompile 'org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter-test:3.4.1'
testCompile group: 'com.h2database', name: 'h2', version: '1.4.200'
testCompileOnly 'org.projectlombok:lombok:1.18.12'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'
}
test {
useJUnitPlatform()
}