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
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Install BitcoinJ dependency
env:
BITCOINJ_TAG: 0.16.13-LIB
BITCOINJ_TAG: 0.16.14-LIB
run: |
[[ "${BITCOINJ_TAG}" == "" ]] && (echo "BITCOINJ_TAG is not set" && exit 1)

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ xsemantics-gen
!xyz.balzaclang.balzac.lib-*-bundled.jar

plugin.xml_gen
*.iml
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ docker run --rm -p 8080:8080 --name balzac balzaclang/balzac:latest

## Setup

Execute the script `install-deps.sh` or alternatively follow these steps:
**Install a customized version of BitcoinJ (v0.16)**

**Install a customized version of BitcoinJ**
```
echo "Cloning https://github.com/natzei/bitcoinj.git"
git -C $HOME clone https://github.com/natzei/bitcoinj.git
git -C $HOME/bitcoinj checkout lib
gradle -p $HOME/bitcoinj install -x test
./gradlew -p $HOME/bitcoinj publishToMavenLocal -x test
```
[Compare versions](https://github.com/bitcoinj/bitcoinj/compare/master...natzei:lib)

[Compare versions](https://github.com/bitcoinj/bitcoinj/compare/master...natzei:libhttps://github.com/bitcoinj/bitcoinj/compare/master...natzei:lib)

## Install
```
Expand Down
2 changes: 1 addition & 1 deletion xyz.balzaclang.balzac.lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<dependency>
<groupId>org.bitcoinj</groupId>
<artifactId>bitcoinj-core</artifactId>
<version>0.16.13-LIB</version>
<version>0.16.14-LIB</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down
Loading