-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
39 lines (32 loc) · 902 Bytes
/
build.gradle
File metadata and controls
39 lines (32 loc) · 902 Bytes
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
group 'com.zekeoptimo'
version '1.0-SNAPSHOT'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.0'
}
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'application'
mainClassName = "com.zekeoptimo.swagger2confluence.Main"
repositories {
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.11',
'org.slf4j:slf4j-api:1.7.25',
'org.slf4j:slf4j-simple:1.7.25',
'org.codehaus.groovy.modules.http-builder:http-builder:0.7.1',
'commons-cli:commons-cli:1.4'
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
}
jar {
manifest {
attributes 'Implementation-Title': 'Confluence to Swagger',
'Implementation-Version': version
}
}