forked from odpi/egeria
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
26 lines (21 loc) · 829 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
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Contributors to the ODPi Egeria project.
*/
dependencies {
implementation 'org.slf4j:slf4j-api'
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:governance-action-framework')
testImplementation 'org.testng:testng'
}
description = 'Open Integration Framework (OIF)'
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
}