-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
53 lines (46 loc) · 1.31 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.0.0"
}
}
subprojects {
description = 'Swagger2Markup extensions.'
version = '1.3.3'
group = 'io.github.swagger2markup'
apply plugin: 'java'
apply from: "$rootDir/gradle/coverage.gradle"
ext {
junit = "4.11"
swagger2markup = "1.3.3"
}
tasks.withType(JavaCompile) {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
options.deprecation = true
options.encoding = 'UTF-8'
options.compilerArgs << "-Xlint:unchecked"
}
repositories {
//mavenLocal()
jcenter()
mavenCentral()
maven {
url "https://oss.jfrog.org/artifactory/oss-snapshot-local"
}
}
dependencies {
compile "io.github.swagger2markup:swagger2markup:${swagger2markup}"
testCompile "junit:junit:${junit}"
testCompile 'ch.qos.logback:logback-classic:1.1.2'
testCompile 'org.assertj:assertj-core:2.2.0'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.12'
}