forked from bloxbean/cardano-client-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (31 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
29
30
31
32
33
34
35
dependencies {
api project(':core')
api project(':backend')
api project(':supplier:ogmios-supplier')
api project(':supplier:kupo-supplier')
api (libs.ogmios.java) {
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
}
implementation(libs.retrofit2) {
exclude group: 'com.squareup.okhttp3', module: 'okhttp'
}
implementation(libs.retrofit2.converter.jackson) {
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
}
implementation(libs.okhttp)
//test dependencies
testImplementation project(':cip:cip25')
testImplementation project(':cip:cip20')
integrationTestImplementation project(':function')
integrationTestImplementation project(':quicktx')
}
publishing {
publications {
mavenJava(MavenPublication) {
pom {
name = 'Cardano Client Ogmios Backend'
description = 'Cardano Client Lib - Ogmios Backend Module'
}
}
}
}