-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (25 loc) · 861 Bytes
/
build.gradle
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
plugins {
id 'java'
}
group 'io.flowable'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
ext.guiceVersion = '4.1.0'
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
// TestNG
compile 'org.testng:testng:6.10'
// https://mvnrepository.com/artifact/org.flowable/flowable-engine
compile 'org.flowable:flowable-engine:6.4.1'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
compile 'org.slf4j:slf4j-api:1.7.25'
// Google Guice
compile "com.google.inject:guice:$guiceVersion",
"com.google.inject.extensions:guice-multibindings:$guiceVersion",
"com.google.inject.extensions:guice-assistedinject:$guiceVersion"
// https://mvnrepository.com/artifact/com.h2database/h2
testCompile 'com.h2database:h2:1.4.197'
}