forked from int128/gradle-swagger-generator-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (32 loc) · 982 Bytes
/
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
plugins {
id 'groovy'
id 'com.gradle.plugin-publish' version '0.9.6'
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
jcenter()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'io.github.swagger2markup:swagger2markup:1.1.0'
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude module: 'groovy-all'
}
testCompile 'cglib:cglib-nodep:3.1'
}
group = 'org.hidetake'
version = System.getenv('TRAVIS_TAG') ?: 'SNAPSHOT'
pluginBundle {
website = 'https://github.com/int128/gradle-swagger-generator-plugin'
vcsUrl = 'https://github.com/int128/gradle-swagger-generator-plugin'
description = 'Gradle Swagger Generator Plugin'
tags = ['swagger', 'api', 'generator']
plugins {
swaggerPlugin {
id = 'org.hidetake.swagger.generator'
displayName = 'Gradle Swagger Generator Plugin'
}
}
}