Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,6 @@ jobs:
distribution: 'temurin'
cache: maven

- name: Clone SDK repository
run: |
git clone https://github.com/eval-exec/ckb-sdk-java.git -b exec/fix-multisig

- name: Build SDK jar
run: |
cd ckb-sdk-java
./gradlew clean :ckb:shadowJar
cd ..

- name: Run Test
if: always()
run: sh prepare.sh && mvn clean test -Dmaven.test.failure.ignore=true
Expand Down
13 changes: 8 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,18 @@
</properties>

<dependencies>
<!-- https://mvnrepository.com/artifact/org.nervos.ckb/ckb -->
<!-- 替换现有的system scope依赖 -->
<!-- 使用Maven仓库中的ckb-sdk-java 4.0.0版本 -->
<dependency>
<groupId>org.nervos.ckb</groupId>
<artifactId>ckb</artifactId>
<version>3.0.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/ckb-sdk-java/ckb/build/libs/ckb-3.0.1-all.jar</systemPath>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.nervos.ckb</groupId>
<artifactId>core</artifactId>
<version>4.0.0</version>
</dependency>

<dependency>
<groupId>cn.afterturn</groupId>
<artifactId>easypoi-base</artifactId>
Expand Down