forked from odpi/egeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
28 lines (22 loc) · 1.01 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
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Contributors to the ODPi Egeria project.
*/
dependencies {
implementation project(':open-metadata-implementation:access-services:asset-catalog:asset-catalog-api')
implementation project(':open-metadata-implementation:access-services:asset-catalog:asset-catalog-server')
implementation project(':open-metadata-implementation:repository-services:repository-services-apis')
implementation 'org.springframework:spring-web'
implementation 'org.springframework:spring-core'
implementation 'javax.validation:validation-api'
implementation 'io.swagger.core.v3:swagger-annotations'
testImplementation 'org.mockito:mockito-core'
testImplementation 'org.mockito:mockito-junit-jupiter'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
implementation 'com.fasterxml.jackson.core:jackson-annotations'
implementation 'com.google.code.findbugs:jsr305'
}
description = 'Asset Catalog OMAS with Spring'
java {
withJavadocJar()
}