From a6d0042e5c595cf7d6d19a2c3afd3c9309727212 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Sun, 26 Oct 2014 09:35:11 -0400 Subject: Move submodules back to libs/ --- libs/minidns | 1 + 1 file changed, 1 insertion(+) create mode 160000 libs/minidns (limited to 'libs/minidns/build.gradle') diff --git a/libs/minidns b/libs/minidns new file mode 160000 index 00000000..9e42bff0 --- /dev/null +++ b/libs/minidns @@ -0,0 +1 @@ +Subproject commit 9e42bff01440c1351946a432126d5a1b87fb7c78 -- cgit v1.2.3 From ccba01ef19e4febadc8e0f543b4958f33adbe8cf Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Tue, 28 Oct 2014 12:13:53 -0400 Subject: Remove minidns dir --- libs/minidns | 1 - 1 file changed, 1 deletion(-) delete mode 160000 libs/minidns (limited to 'libs/minidns/build.gradle') diff --git a/libs/minidns b/libs/minidns deleted file mode 160000 index 9e42bff0..00000000 --- a/libs/minidns +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 9e42bff01440c1351946a432126d5a1b87fb7c78 -- cgit v1.2.3 From 4a1bae3a69a76cae0341b821e3b880e5b8b8f5a3 Mon Sep 17 00:00:00 2001 From: Sam Whited Date: Tue, 28 Oct 2014 12:14:21 -0400 Subject: Subtree merged in minidns --- libs/minidns/build.gradle | 77 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 libs/minidns/build.gradle (limited to 'libs/minidns/build.gradle') diff --git a/libs/minidns/build.gradle b/libs/minidns/build.gradle new file mode 100644 index 00000000..5941beaf --- /dev/null +++ b/libs/minidns/build.gradle @@ -0,0 +1,77 @@ +apply plugin: 'java' +apply plugin: 'eclipse' +apply plugin: 'osgi' +apply plugin: 'nexus' + +buildscript { + repositories { + jcenter() + mavenLocal() + mavenCentral() + } + + dependencies { + classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.7.1' + } +} + +group = 'de.measite.minidns' +description = "A minimal DNS client library with support for A, AAAA, NS and SRV records" +sourceCompatibility = 1.7 +version = 'git tag --points-at HEAD'.execute().text.trim() +isSNAPSHOT = 'git rev-parse --abbrev-ref HEAD'.execute().text.trim() == 'master' + +if (isSNAPSHOT) { + version = version + '-SNAPSHOT' +} + +repositories { + mavenLocal() + mavenCentral() +} + +nexus { + attachSources = true + attachTests = false + attachJavadoc = true + sign = true +} + +modifyPom { + project { + name 'minidns' + description 'Minimal DNS library for java and android systems' + url 'https://github.com/rtreffer/minidns' + inceptionYear '2014' + + scm { + url 'https://github.com/rtreffer/minidns' + connection 'scm:https://github.com/rtreffer/minidns' + developerConnection 'scm:git://github.com/rtreffer/minidns.git' + } + + licenses { + license { + name 'The Apache Software License, Version 2.0' + url 'http://www.apache.org/licenses/LICENSE-2.0.txt' + distribution 'repo' + } + } + + developers { + developer { + id 'rtreffer' + name 'Rene Treffer' + email 'treffer@measite.de' + } + developer { + id 'flow' + name 'Florian Schmaus' + email 'flow@geekplace.eu' + } + } + } +} + +dependencies { +} \ No newline at end of file -- cgit v1.2.3