-
Notifications
You must be signed in to change notification settings - Fork 261
/
Copy pathbuild.gradle
28 lines (23 loc) · 988 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
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Contributors to the ODPi Egeria project.
*/
dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind'
compileOnly 'com.fasterxml.jackson.core:jackson-annotations'
implementation project(':open-metadata-implementation:frameworks:audit-log-framework')
implementation project(':open-metadata-implementation:frameworks:open-connector-framework')
implementation project(':open-metadata-implementation:frameworks:open-metadata-framework')
implementation project(':open-metadata-implementation:frameworks:governance-action-framework')
implementation 'commons-io:commons-io'
testImplementation 'org.testng:testng'
}
description = 'Survey Action Framework (SAF)'
java {
withJavadocJar()
}
test {
useTestNG()
// This will default to standard search pattern - see https://docs.gradle.org/current/userguide/java_testing.html#sec:test_detection
scanForTestClasses = false
}