forked from odpi/egeria
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
28 lines (23 loc) · 1019 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 {
compileOnly 'com.fasterxml.jackson.core:jackson-annotations'
implementation project(':open-metadata-implementation:common-services:ffdc-services')
implementation project(':open-metadata-implementation:frameworks:audit-log-framework')
implementation project(':open-metadata-implementation:frameworks:open-connector-framework')
implementation project(':open-metadata-implementation:repository-services:repository-services-apis')
testImplementation project(':open-metadata-test:open-metadata-ut')
testImplementation 'org.testng:testng'
testCompileOnly 'com.fasterxml.jackson.core:jackson-annotations'
}
description = 'Project Management OMAS API'
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
}