From 089007a498a9e3b71b955c3a706a6afd32628e56 Mon Sep 17 00:00:00 2001 From: Joe Schmid Date: Fri, 6 Feb 2015 22:54:16 -0500 Subject: [PATCH] Updated project to use 5.0-Beta2 of tomp2p Note that this has not been thoroughly tested and, in particular, my router does not support UPnP so I've only been able to test with --node.useManualPortForwarding=true The project does compile and run successfully though. With manual port forwarding I'm able to connect to the p2p network and view open offers successfully. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 4af61312f0..fca1d48c79 100644 --- a/build.gradle +++ b/build.gradle @@ -36,12 +36,12 @@ processResources { repositories { jcenter() - maven { url 'https://partnerdemo.artifactoryonline.com/partnerdemo/libs-snapshots-local' } + maven { url 'http://tomp2p.net/dev/mvn/' } } dependencies { compile 'org.bitcoinj:bitcoinj-core:0.12.2' - compile 'net.tomp2p:tomp2p-all:5.0-Alpha.8f1cafb-SNAPSHOT' + compile 'net.tomp2p:tomp2p-all:5.0-Beta2' compile 'io.reactivex:rxjava:1.0.0' compile 'org.springframework:spring-core:4.1.1.RELEASE' compile 'net.sf.jopt-simple:jopt-simple:4.8'