2018-07-15 14:59:40 +00:00
|
|
|
/**
|
|
|
|
|
|
|
|
Declares dependencies for Jdnssec-tools
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName = 'jdnssec-tools'
|
2022-09-21 18:24:42 +00:00
|
|
|
version = '0.17'
|
2018-07-15 14:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2022-09-21 18:24:42 +00:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2018-07-15 14:59:40 +00:00
|
|
|
|
|
|
|
dependencies {
|
2018-07-15 17:08:29 +00:00
|
|
|
compile fileTree(dir: 'lib', include: '*.jar')
|
2018-07-15 14:59:40 +00:00
|
|
|
}
|