-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
15 lines (13 loc) · 830 Bytes
/
build.gradle
File metadata and controls
15 lines (13 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
dependencies {
api project(':inversion-core-config')
api project(':inversion-core-context')
api project(':inversion-core-json')
api project(':inversion-core-rql')
api project(':inversion-core-utils')
api group: "org.slf4j", name: "slf4j-api", version: "${slf4jVersion}"
implementation group: "org.apache.commons", name: "commons-text", version: "${commonsTextVersion}"
implementation group: "org.apache.commons", name: "commons-collections4", version: "${commonsCollections4Version}"
implementation group: "com.fasterxml.jackson.core", name: "jackson-core", version: "${jacksonCoreVersion}"
implementation group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "${jacksonDatabindVersion}"
testImplementation project(':inversion-core-context').sourceSets.test.output
}