Skip to content
This repository has been archived by the owner on Sep 24, 2018. It is now read-only.

Resolve bisq-core by new GAV coordinates #1

Merged
merged 2 commits into from
Mar 9, 2018
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
14 changes: 0 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,6 @@ See also [docs/run-on-tor-and-regtest.md](docs/run-on-tor-and-regtest.md)

You'll first need to install the Lombok plugin for IDEA. Then import the project as you normally would.

## Convenience setup for developers

If you work on changes in core which are relevant to seed node and run a local developer seed node you might prefer to have your changes reflected in the seed node without waiting until the changes are merged into master.
By default Bisq-seednode uses the jar file created by jitpack from the latest master version.
If you want to use your locally built maven artefacts from exchange you can change the dependency to core in the pom.xml to:

<dependency>
<groupId>io.bisq</groupId>
<artifactId>core</artifactId>
<version>[VERSION]</version>
</dependency>

Furthermore you can import the Bisq-seednode project as module in your exchange project in IntelliJ, so that each code change will get reflected without external maven build as well you can debug a seednode instance directly from IntelliJ.

## Further information

- See the [docs](docs) directory
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@

<dependencies>
<dependency>
<groupId>com.github.bisq-network.exchange</groupId>
<groupId>io.bisq.exchange</groupId>
<artifactId>core</artifactId>
<version>master</version>
<version>0.7.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
Expand Down