Skip to content

Commit

Permalink
fix: Update to yaci 0.3.4.1 to avoid sync issue due to parsing error …
Browse files Browse the repository at this point in the history
…in redeemer data (#249)
  • Loading branch information
satran004 authored Jan 10, 2025
1 parent c27afff commit c93dc4d
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 6 deletions.
8 changes: 7 additions & 1 deletion aggregates/account/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation(libs.cardano.client.lib)
api(libs.yaci.store.starter)
api(libs.yaci.store.starter) {
exclude group: 'com.bloxbean.cardano', module: 'yaci'
exclude group: 'com.bloxbean.cardano', module: 'cardano-client-lib'
}
implementation(libs.yaci)
implementation(libs.cardano.client.lib)

implementation(libs.yaci.store.utxo.starter)
implementation(libs.yaci.store.account.starter)

Expand Down
8 changes: 7 additions & 1 deletion aggregation-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-batch'
implementation 'org.springframework.boot:spring-boot-starter-actuator'

implementation(libs.yaci.store.starter)
implementation(libs.yaci.store.starter) {
exclude group: 'com.bloxbean.cardano', module: 'yaci'
exclude group: 'com.bloxbean.cardano', module: 'cardano-client-lib'
}
implementation(libs.yaci)
implementation(libs.cardano.client.lib)

implementation(libs.yaci.store.utxo.starter)
implementation(libs.yaci.store.account.starter)
implementation(libs.yaci.store.admin.starter)
Expand Down
8 changes: 7 additions & 1 deletion application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ dependencies {
implementation project(':components:scheduler')
implementation project(':components:healthcheck')

implementation(libs.yaci.store.starter)
implementation(libs.yaci.store.starter) {
exclude group: 'com.bloxbean.cardano', module: 'yaci'
exclude group: 'com.bloxbean.cardano', module: 'cardano-client-lib'
}
implementation(libs.yaci)
implementation(libs.cardano.client.lib)

implementation(libs.yaci.store.governance.starter)
implementation(libs.yaci.store.epoch.starter)

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group = org.cardanofoundation
version = 0.1.1
version = 0.1.2
3 changes: 2 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[libraries]
yaci = "com.bloxbean.cardano:yaci:0.3.4.1"
yaci-store-starter="com.bloxbean.cardano:yaci-store-spring-boot-starter:0.1.0-rc6"
yaci-store-utxo-starter="com.bloxbean.cardano:yaci-store-utxo-spring-boot-starter:0.1.0-rc6"
yaci-store-account-starter="com.bloxbean.cardano:yaci-store-account-spring-boot-starter:0.1.0-rc6"
Expand All @@ -7,7 +8,7 @@ yaci-store-governance-starter="com.bloxbean.cardano:yaci-store-governance-spring
yaci-store-admin-starter="com.bloxbean.cardano:yaci-store-admin-spring-boot-starter:0.1.0-rc6"
yaci-store-events="com.bloxbean.cardano:yaci-store-events:0.1.0-rc6"
yaci-store-epoch-starter="com.bloxbean.cardano:yaci-store-epoch-spring-boot-starter:0.1.0-rc6"
cardano-client-lib="com.bloxbean.cardano:cardano-client-lib:0.6.0"
cardano-client-lib="com.bloxbean.cardano:cardano-client-lib:0.6.2"
snakeyaml="org.yaml:snakeyaml:2.0"
guava="com.google.guava:guava:33.0.0-jre"
log4j-api="org.apache.logging.log4j:log4j-api:2.22.1"
Expand Down
8 changes: 7 additions & 1 deletion streamer-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-stream-kafka'
implementation 'org.springframework.cloud:spring-cloud-starter-stream-rabbit'

implementation(libs.yaci.store.starter)
implementation(libs.yaci.store.starter) {
exclude group: 'com.bloxbean.cardano', module: 'yaci'
exclude group: 'com.bloxbean.cardano', module: 'cardano-client-lib'
}
implementation(libs.yaci)
implementation(libs.cardano.client.lib)

implementation(libs.yaci.store.remote.starter)

runtimeOnly 'org.postgresql:postgresql'
Expand Down

0 comments on commit c93dc4d

Please sign in to comment.