forked from zhurlik/gradle-swagger-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
90 lines (74 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import static org.gradle.api.JavaVersion.VERSION_1_7
apply plugin: 'application'
apply plugin: 'idea'
apply plugin: 'groovy'
apply plugin: 'jacoco'
apply plugin: 'com.gradle.plugin-publish'
apply plugin: 'com.github.kt3k.coveralls'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.gradle.publish:plugin-publish-plugin:0.9.7'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.+'
}
}
targetCompatibility = VERSION_1_7
group = 'com.github.zhurlik'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile gradleApi()
compile localGroovy()
// swagger plugin
compile group: 'io.swagger', name: 'swagger-core', version: '1.5.10'
//classpath group: 'com.github.kongchen', name: 'swagger-maven-plugin', version: '3.1.7'
compile group: 'com.github.kongchen', name: 'swagger-maven-plugin', version: '3.1.7'
testCompile group: 'junit', name: 'junit', version: '4.12'
}
test {
// show standard out and standard error of the test JVM(s) on the console
testLogging.showStandardStreams = true
// listen to events in the test execution lifecycle
beforeTest { descriptor ->
logger.lifecycle("Running test: $descriptor")
}
// listen to standard out and standard error of the test JVM(s)
onOutput { descriptor, event ->
logger.lifecycle("Test: $descriptor produced standard out/err: ${event.message}")
}
}
distributions {
main {
contents {
// Letting downstream users use their own groovy version
exclude('**/groovy*.jar')
}
}
}
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}
// The configuration example below shows the minimum required properties
// configured to publish your plugin to the plugin portal
pluginBundle {
website = 'https://github.com/zhurlik/gradle-swagger-plugin'
vcsUrl = 'https://github.com/zhurlik/gradle-swagger-plugin'
description = 'A gradle plugin for using swagger-maven-plugin'
tags = ['java', 'swagger', 'maven', 'gradle', 'plugin', 'groovy']
plugins {
jbossModulesPlugin {
id = 'com.github.zhurlik.swagger'
displayName = 'Gradle plugin for using swagger-maven-plugin'
}
}
}
mainClassName = 'com.github.zhurlik.Main'