forked from odpi/egeria
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
30 lines (26 loc) · 1.47 KB
/
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
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Contributors to the ODPi Egeria project.
*/
dependencies {
compileOnly project(':open-metadata-implementation:frameworks:audit-log-framework')
compileOnly project(':open-metadata-implementation:frameworks:open-connector-framework')
compileOnly project(':open-metadata-implementation:frameworks:governance-action-framework')
compileOnly project(':open-metadata-implementation:repository-services:repository-services-apis')
compileOnly project(':open-metadata-implementation:repository-services:repository-services-archive-utilities')
compileOnly project(':open-metadata-implementation:engine-services:repository-governance:repository-governance-api')
implementation 'commons-io:commons-io'
compileOnly 'org.slf4j:slf4j-api'
compileOnly 'com.fasterxml.jackson.core:jackson-annotations'
compileOnly 'com.fasterxml.jackson.core:jackson-databind'
testImplementation 'org.testng:testng'
testImplementation project(':open-metadata-test:open-metadata-ut')
testImplementation project(':open-metadata-implementation:frameworks:audit-log-framework')
testImplementation project(':open-metadata-implementation:repository-services:repository-services-apis')
testImplementation project(':open-metadata-implementation:frameworks:open-connector-framework')
testCompileOnly 'com.fasterxml.jackson.core:jackson-annotations'
}
description = 'Dynamic Archiver Connectors'
java {
withJavadocJar()
}