68 lines
2.1 KiB
Groovy
68 lines
2.1 KiB
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.3'
|
|
classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.10.1'
|
|
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
|
|
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.0.0"
|
|
classpath "org.ajoberstar:gradle-git:1.3.2"
|
|
}
|
|
}
|
|
description = 'swagger2markup Build'
|
|
version = '1.0.0-SNAPSHOT'
|
|
group = 'io.github.swagger2markup'
|
|
|
|
apply plugin: 'java'
|
|
apply from: 'gradle/publishing.gradle'
|
|
apply from: 'gradle/coverage.gradle'
|
|
apply from: 'gradle/documentation.gradle'
|
|
|
|
tasks.withType(JavaCompile) {
|
|
sourceCompatibility = "1.8"
|
|
targetCompatibility = "1.8"
|
|
options.deprecation = true
|
|
options.encoding = 'UTF-8'
|
|
options.compilerArgs << "-Xlint:unchecked"
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url "https://oss.jfrog.org/artifactory/oss-snapshot-local"
|
|
}
|
|
jcenter()
|
|
mavenCentral()
|
|
//mavenLocal()
|
|
}
|
|
|
|
dependencies {
|
|
compile 'io.github.swagger2markup:markup-document-builder:1.0.0-SNAPSHOT'
|
|
compile 'io.swagger:swagger-compat-spec-parser:1.0.18'
|
|
compile 'org.apache.commons:commons-configuration2:2.0'
|
|
compile 'commons-beanutils:commons-beanutils:1.9.2'
|
|
compile 'org.apache.commons:commons-collections4:4.1'
|
|
testCompile 'junit:junit:4.11'
|
|
testCompile 'org.asciidoctor:asciidoctorj:1.5.4'
|
|
testCompile 'ch.qos.logback:logback-classic:1.1.2'
|
|
testCompile 'org.assertj:assertj-core:3.4.0'
|
|
testCompile 'io.github.robwin:assertj-diff:0.1.1'
|
|
}
|
|
|
|
test {
|
|
if (System.properties['http.proxyHost']) {
|
|
systemProperty 'http.proxyHost', System.properties['http.proxyHost']
|
|
systemProperty 'http.proxyPort', System.properties['http.proxyPort']
|
|
systemProperty 'http.nonProxyHosts', System.properties['http.nonProxyHosts']
|
|
}
|
|
systemProperty 'file.encoding', 'UTF-8'
|
|
ignoreFailures = true
|
|
}
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.12'
|
|
}
|