forked from odpi/egeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (25 loc) · 952 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
29
30
31
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Contributors to the ODPi Egeria project.
*/
plugins {
id 'application'
}
dependencies {
implementation project(':open-metadata-implementation:repository-services:repository-services-apis')
implementation project(':open-metadata-implementation:repository-services:repository-services-archive-utilities')
implementation project(':open-metadata-implementation:frameworks:audit-log-framework')
compileOnly 'com.fasterxml.jackson.core:jackson-annotations'
testImplementation 'org.testng:testng'
compileOnly 'com.fasterxml.jackson.core:jackson-annotations'
compileOnly 'com.google.code.findbugs:jsr305'
}
description = 'Open Metadata Types'
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
}