Skip to content

Commit 41dc9ed

Browse files
authored
Fix/indexer stopped due to wrong redeemer data (#267)
* fix: upgraded yaci release to avoid indexer error * fix: upgraded yaci release to avoid indexer error * chore: updated build for fix * chore: updated build for fix * chore: updated version for new fix release
1 parent c4398fe commit 41dc9ed

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ COPY ./yaci-indexer /root/app/yaci-indexer
156156
COPY ./test-data-generator /root/app/test-data-generator
157157
COPY ./.git /root/app/.git
158158

159-
RUN --mount=type=cache,target=/root/.m2 mvn clean package -DskipTests
159+
RUN --mount=type=cache,target=/root/.m2 mvn -U clean package -DskipTests
160160

161161
# Main
162162
FROM ubuntu:22.04

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</licenses>
2727

2828
<properties>
29-
<revision>1.1.3</revision>
29+
<revision>1.1.4</revision>
3030
<java.version>21</java.version>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3232
<version.spring-boot>3.2.4</version.spring-boot>
@@ -42,7 +42,7 @@
4242
<version.nimbusds>9.25.6</version.nimbusds>
4343
<version.bloxbean>0.4.3</version.bloxbean>
4444
<version.client-lib>0.5.1</version.client-lib>
45-
<version.yaci>0.2.5</version.yaci>
45+
<version.yaci>0.3.4.1</version.yaci>
4646
<version.yaci-store>0.1.0</version.yaci-store>
4747
<version.commons-io>2.11.0</version.commons-io>
4848
<version.javax-validation-api>2.0.1.Final</version.javax-validation-api>

yaci-indexer/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,17 @@
5656
<groupId>com.bloxbean.cardano</groupId>
5757
<artifactId>yaci-store-spring-boot-starter</artifactId>
5858
<version>${yaci-store.version}</version>
59+
<exclusions>
60+
<exclusion>
61+
<groupId>com.bloxbean.cardano</groupId>
62+
<artifactId>yaci</artifactId>
63+
</exclusion>
64+
</exclusions>
65+
</dependency>
66+
<dependency>
67+
<groupId>com.bloxbean.cardano</groupId>
68+
<artifactId>yaci</artifactId>
69+
<version>0.3.4.1</version>
5970
</dependency>
6071
<!-- Used for block data -->
6172
<dependency>

0 commit comments

Comments
 (0)