conversations-classic/build.gradle

77 lines
1.7 KiB
Groovy
Raw Normal View History

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'osgi'
2014-06-22 14:36:19 +00:00
apply plugin: 'nexus'
2014-06-22 14:36:19 +00:00
buildscript {
repositories {
jcenter()
2014-07-30 20:29:16 +00:00
mavenLocal()
mavenCentral()
2014-06-22 14:36:19 +00:00
}
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
2014-06-22 14:36:19 +00:00
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'
}
2014-06-12 07:29:35 +00:00
repositories {
mavenLocal()
mavenCentral()
}
2014-06-22 14:36:19 +00:00
nexus {
2014-06-23 18:56:38 +00:00
attachSources = true
2014-06-22 14:36:19 +00:00
attachTests = false
2014-06-23 18:56:38 +00:00
attachJavadoc = true
2014-06-22 14:36:19 +00:00
sign = true
2014-04-02 20:00:32 +00:00
}
2014-06-22 14:36:19 +00:00
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'
}
}
}
}
2014-07-30 20:29:16 +00:00
dependencies {
}