Skip to content

Commit

Permalink
Update for Android Studio 1.0 RC
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Schürmann committed Dec 4, 2014
1 parent 118fefc commit f3a1908
Showing 1 changed file with 0 additions and 55 deletions.
55 changes: 0 additions & 55 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'osgi'
apply plugin: 'nexus'

buildscript {
repositories {
Expand All @@ -15,63 +12,11 @@ buildscript {
}
}

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 {
}

0 comments on commit f3a1908

Please sign in to comment.