-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbuild.gradle
220 lines (185 loc) · 6.51 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*
* Copyright (C) 2014-2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.text.SimpleDateFormat
buildscript {
repositories {
jcenter()
}
}
plugins {
id 'java'
id 'idea'
id 'eclipse'
id 'jacoco'
id 'maven-publish'
id "com.jfrog.bintray" version "1.8.5"
id "com.github.hierynomus.license" version "0.15.0"
id 'net.researchgate.release' version '2.8.1'
id "io.spring.dependency-management" version "1.0.10.RELEASE"
id 'com.github.kt3k.coveralls' version '2.10.2'
id "com.github.ben-manes.versions" version "0.33.0"
}
repositories {
jcenter()
mavenCentral()
}
version = project.version
group = project.group
sourceCompatibility = project.javaVersion
targetCompatibility = project.javaVersion
Date buildTimeAndDate = new Date()
ext {
buildDate = new SimpleDateFormat('dd-MMM-yyyy').format(buildTimeAndDate)
buildTime = new SimpleDateFormat('hh:mm aa').format(buildTimeAndDate)
}
dependencyManagement {
imports {
mavenBom "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"
}
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-web"
compile("org.springframework:spring-core") {
exclude module: 'commons-logging'
}
compile 'de.neuland-bfi:spring-pug4j:2.0.0-alpha-2'
compile 'de.neuland-bfi:pug4j:2.0.0-alpha-2'
testCompile 'junit:junit'
testCompile "org.springframework:spring-test"
testCompile 'org.springframework.boot:spring-boot-test'
}
def jarManifestAttributes = [
'Built-By' : System.properties['user.name'],
'Created-By': System.properties['java.version'] + ' (' + System.properties['java.vendor'] + ' ' + System.getProperty("java.vm.version") + ")",
'Build-Date': buildDate,
'Build-Time': buildTime]
jar {
manifest {
attributes(jarManifestAttributes)
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
def javaApiUrl = 'http://docs.oracle.com/javase/1.7.0/docs/api/'
def groovyApiUrl = 'http://groovy.codehaus.org/gapi/'
tasks.withType(Javadoc) {
options.links(javaApiUrl, groovyApiUrl)
}
if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar, javadocJar
}
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}
license {
excludes(["**/*.pug4j", "**/*.pug", "**/*.factories"])
ext.year = Calendar.getInstance().get(Calendar.YEAR)
ext.name = 'Domingo Suarez Torres'
ext.email = '[email protected]'
header rootProject.file('LICENSE')
strictCheck true
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar
pom.withXml {
def root = asNode()
root.appendNode('name', project.pomName)
root.appendNode('description', project.description)
root.appendNode('url', 'https://github.com/domix/jade4j-spring-boot-starter')
root.appendNode('inceptionYear', '2014')
root.appendNode('packaging', 'jar')
def scm = root.appendNode('scm')
scm.appendNode('url', 'https://github.com/domix/jade4j-spring-boot-starter')
scm.appendNode('connection', 'scm:https://[email protected]/domix/jade4j-spring-boot-starter.git')
scm.appendNode('developerConnection', 'scm:[email protected]:domix/jade4j-spring-boot-starter.git')
def license = root.appendNode('licenses').appendNode('license')
license.appendNode('name', 'The Apache Software License, Version 2.0')
license.appendNode('url', 'http://www.apache.org/licenses/LICENSE-2.0.txt')
license.appendNode('distribution', 'repo')
def developers = root.appendNode('developers')
def domix = developers.appendNode('developer')
domix.appendNode('id', 'domix')
domix.appendNode('name', 'Domingo Suarez Torres')
domix.appendNode('email', '[email protected]')
root.dependencies.'*'.findAll() {
it.scope.text() == 'runtime' && project.configurations.compile.allDependencies.find { dep ->
dep.name == it.artifactId.text()
}
}.each() {
it.scope*.value = 'compile'
}
}
}
}
}
bintray {
user = project.hasProperty('bintrayUsername') ? bintrayUsername : ''
key = project.hasProperty('bintrayApiKey') ? bintrayApiKey : ''
publications = ['mavenJava']
dryRun = false //Whether to run this as dry-run, without deploying
publish = true //If version should be auto published after an upload
pkg {
repo = 'spring-boot'
userOrg = 'domix'
name = project.name
desc = project.description
websiteUrl = 'https://github.com/domix/jade4j-spring-boot-starter'
issueTrackerUrl = 'https://github.com/domix/jade4j-spring-boot-starter/issues'
vcsUrl = 'https://github.com/domix/jade4j-spring-boot-starter.git'
licenses = ['Apache-2.0']
labels = ['spring-boot', 'jade', 'starter', 'spring', 'spring-mvc']
publicDownloadNumbers = true
attributes = ['a': ['ay1', 'ay2'], 'b': ['bee'], c: 'cee']
//Optional version descriptor
version {
name = project.version
desc = project.description
gpg {
sign = project.hasProperty('bintrayGpgPassphrase')
passphrase = project.hasProperty('bintrayGpgPassphrase') ? bintrayGpgPassphrase : ''
}
mavenCentralSync {
sync = false
user = ''
password = ''
close = '1'
}
}
}
}
javadoc.options.links("http://docs.oracle.com/javase/7/docs/api/", "http://docs.spring.io/spring/docs/4.2.x/javadoc-api/", "http://docs.spring.io/spring-boot/docs/${springBootVersion}/api/", "https://docs.oracle.com/javaee/5/api/")
classes.dependsOn licenseFormat
jacocoTestReport.dependsOn check
bintrayUpload.dependsOn jacocoTestReport
createReleaseTag.dependsOn bintrayUpload