diff --git a/README.md b/README.md index 1a48f5f570..2217121fa7 100644 --- a/README.md +++ b/README.md @@ -6,23 +6,13 @@ It allows to trade fiat money (USD, EURO, ...) for Bitcoins without relying on a Instead, all participants form a peer to peer market. ## Dependencies -The project use **Java 8** and **Gradle**. -We use the **BitcoinJ** library and **TomP2P** for DHT and direct messaging. + + - [JDK 8](http://www.oracle.com/technetwork/java/javase/downloads/index.html) ## Development setup -### Build the 2 master branches of the external libraries: - -We use [that fork](https://github.com/bitsquare/TomP2P) from the actual TomP2P master branch. -You need to check that branch out and deploy it to the local maven repository. -Build the project with: -**mvn clean install -DskipTests** (DskipTests because some unit tests are failing in the master branch) - -We use also [that fork](https://github.com/bitsquare/bitcoinj) of the latest BitcoinJ master branch. -You need to check that branch out as well and deploy it to the local maven repository. -Build the project with: -**mvn clean install** - + git clone https://github.com/bitsquare/bitsquare.git + ./gradlew build ### Regtest mode for local testing For local testing it is best to use the **regtest** mode from the Bitcoin QT client. @@ -69,4 +59,4 @@ Please don't use main net with real money, as the software is under heavy develo * [IRC](https://webchat.freenode.net/?channels=bitsquare.io) * [Bitcoin forum](https://bitcointalk.org/index.php?topic=647457) * [Twitter](https://twitter.com/bitsquare_) -* [Email](mailto:team@bitsquare.io) \ No newline at end of file +* [Email](mailto:team@bitsquare.io) diff --git a/build.gradle b/build.gradle index 84f4721def..0e284ac6c5 100644 --- a/build.gradle +++ b/build.gradle @@ -24,12 +24,12 @@ task executableJar(type: OneJar) { repositories { jcenter() - mavenLocal() + maven { url 'http://partnerdemo.artifactoryonline.com/partnerdemo/libs-snapshots-local' } } dependencies { - compile 'com.google:bitcoinj:0.12-SNAPSHOT' - compile 'net.tomp2p:tomp2p-all:5.0-Alpha24-SNAPSHOT' + compile 'com.google:bitcoinj:0.12.308de4e-SNAPSHOT' + compile 'net.tomp2p:tomp2p-all:5.0-Alpha24.805623c-SNAPSHOT' compile 'org.slf4j:slf4j-api:1.7.7' compile 'ch.qos.logback:logback-core:1.1.2' compile 'ch.qos.logback:logback-classic:1.1.2'