diff options
author | Florian Schmaus <flo@geekplace.eu> | 2014-06-12 09:29:35 +0200 |
---|---|---|
committer | Florian Schmaus <flo@geekplace.eu> | 2014-06-12 09:52:41 +0200 |
commit | 7dd8cfc6e6cd9bafb2cb3a6fdc9866de7d7495a6 (patch) | |
tree | 5fb90e090cb52d754e5a8e561d488f1f96effab2 /build.gradle | |
parent | f66c0db63f0c0b65ad59ac1a8aaadc1cbaf40761 (diff) |
Add Cache to minidns
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 7cf46718..01eafc65 100644 --- a/build.gradle +++ b/build.gradle @@ -24,6 +24,18 @@ if (isSnapshot) { version += '-SNAPSHOT' } +repositories { + mavenLocal() + mavenCentral() + maven { + url 'https://oss.sonatype.org/content/repositories/snapshots/' + } +} + +dependencies { + compile 'org.igniterealtime.jxmpp:jxmpp-util-cache:0.1.0-alpha1-SNAPSHOT' +} + jar { manifest { instruction 'Implementation-GitRevision:', project.ext.gitCommit |