Skip to content

Instantly share code, notes, and snippets.

@a1994sc
Last active August 29, 2015 14:23
Show Gist options
  • Save a1994sc/bf767467393ac58062ff to your computer and use it in GitHub Desktop.
Save a1994sc/bf767467393ac58062ff to your computer and use it in GitHub Desktop.
apply plugin: 'java'
sourceCompatibility = 1.5
version = '1.0'
repositories {
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.tomp2p:TomP2P:9a68075'
}
import net.tomp2p.p2p.Peer;
public class Hello {
public static void main(String... args) {
Peer p = null;
}
}
rootProject.name = 'JitPackTesting'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment