-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
55 lines (40 loc) · 1.67 KB
/
build.gradle
File metadata and controls
55 lines (40 loc) · 1.67 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.4'
id 'io.spring.dependency-management' version '1.1.6'
}
group = 'com.fluidtokens.aquarium'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '21'
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.cardanofoundation:cf-cardano-conversions-java:1.2.0'
implementation 'com.bloxbean.cardano:yaci-store-spring-boot-starter:0.1.6'
implementation 'com.bloxbean.cardano:yaci-store-utxo-spring-boot-starter:0.1.6'
implementation('com.bloxbean.cardano:cardano-client-lib:0.7.0')
implementation('com.bloxbean.cardano:cardano-client-backend-blockfrost:0.7.0')
implementation('com.bloxbean.cardano:cardano-client-backend-ogmios:0.7.0')
implementation 'io.micrometer:micrometer-registry-prometheus:latest.release'
implementation 'org.postgresql:postgresql:42.6.0'
testImplementation 'com.h2database:h2:2.1.214'
compileOnly 'com.bloxbean.cardano:cardano-client-annotation-processor:0.7.0'
annotationProcessor 'com.bloxbean.cardano:cardano-client-annotation-processor:0.7.0'
// Lombok
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
testCompileOnly 'org.projectlombok:lombok:1.18.30'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.30'
}
tasks.named('test') {
useJUnitPlatform()
}