Newer
Older
testCompile 'junit:junit:4.12'
}
sourceSets {
main {
java {
srcDirs = ['src']
}
resources {
srcDirs = ['src']
exclude '**/*.java'
}
}
test {
java {
resources {
srcDirs = ['test']
exclude '**/*.java'
}
/*
* The git-dir option gets the correct tag when
* build is called from nshmp-haz-ws.
*/
gitCommand = 'git --git-dir=../nshmp-haz/.git describe --tags'
gitTag = gitCommand.execute().text.replace('\n', '') ?: 'unknown'
gitLink = '<a href="https://github.com/usgs/nshmp-haz">' + gitTag +'</a>'
docTitle = projectName + ': ' + gitLink
docFooter = '<div style="float: left; font-size: 16px; text-align: right; ' +
'padding: 10px; width: 100%; box-sizing: border-box; background-color: #f9f9f9">' +
'<b><a href="https://www.usgs.gov" target="_top">U.S. Geological Survey</a></b> ' +
'– National Seismic Hazard Mapping Project ' +
'(<a href="https://earthquake.usgs.gov/hazards/" target="_top">NSHMP</a>) ' +
'– <a href="https://github.com/usgs/nshmp-haz/blob/master/LICENSE.md" ' +
'target="_top">License</a> | <b>' + gitLink + '</b></div>'
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
}
test {
//include 'gov/usgs/earthquake/nshmp/gmm/*'
//exclude 'gov/usgs/earthquake/nshmp/**'
//include 'gov/usgs/earthquake/nshmp/gmm/CeusSoftRock.class'
filter {
includeTestsMatching "gov.usgs.earthquake.nshmp.data.*"
}
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
}
javadoc {
options.setUse(true)
options.author(true)
options.version(true)
options.windowTitle(projectName)
options.docTitle(docTitle)
options.encoding('UTF-8')
options.docEncoding('UTF-8')
options.charSet('UTF-8')
options.bottom(docFooter)
options.addStringOption('Xdoclint:none', '-quiet')
options.links(
'https://docs.oracle.com/javase/8/docs/api/',
'https://google.github.io/guava/releases/23.0/api/docs/',
'https://google.github.io/gson/apidocs/')
include 'gov/usgs/earthquake/nshmp/**'
exclude 'gov/usgs/earthquake/nshmp/etc/**'
exclude 'gov/usgs/earthquake/nshmp/gcim/**'
exclude 'gov/usgs/earthquake/nshmp/internal/**'
doLast {
if (docOut) {
delete docOut
copy {
from 'build/docs/javadoc'
into docOut
}
copy {
from 'etc/resources/docs'
into docOut + '/resources'
}
}
}
* Enhance the jar task to build a fat jar if running the build
* directly and add application version to a properties file.
* Note that 'git describe' only works when running gradle from
* the command line.
/* possible fat jar */
if (rootProject.name == projectName) {
from { configurations.compile.collect {
/* record app version */
def props = new Properties()
def propsFile = new File(project.buildDir.toString() + propsPath)
propsFile.createNewFile()
props.setProperty('app.version', gitTag)
props.store(propsFile.newWriter(), null)