Last active
August 29, 2015 14:23
-
-
Save a1994sc/bf767467393ac58062ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'java' | |
sourceCompatibility = 1.5 | |
version = '1.0' | |
repositories { | |
mavenCentral() | |
jcenter() | |
maven { url "https://jitpack.io" } | |
} | |
dependencies { | |
compile 'com.github.tomp2p:TomP2P:9a68075' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import net.tomp2p.p2p.Peer; | |
public class Hello { | |
public static void main(String... args) { | |
Peer p = null; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rootProject.name = 'JitPackTesting' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment