91 lines
3.7 KiB
Groovy
91 lines
3.7 KiB
Groovy
plugins {
|
|
id "de.undercouch.download" version "3.3.0"
|
|
id "com.github.spotbugs" version "2.0.0"
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'application'
|
|
apply plugin: 'project-report'
|
|
|
|
mainClassName = "com.controller.Main"
|
|
|
|
test.testLogging { exceptionFormat "full"; events "failed", "passed", "skipped" }
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.11'
|
|
runtime fileTree(dir: 'lib', include: '*.jar')
|
|
compile group: 'net.sourceforge.collections', name: 'collections-generic', version: '4.01'
|
|
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
|
|
compile group: 'log4j', name: 'log4j', version: '1.2.17'
|
|
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
|
|
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.3'
|
|
compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.5.3'
|
|
|
|
// https://mvnrepository.com/artifact/com.github.fge/json-schema-validator
|
|
compile group: 'com.github.fge', name: 'json-schema-validator', version: '2.2.6'
|
|
// https://mvnrepository.com/artifact/com.github.fge/jackson-coreutils
|
|
compile group: 'com.github.fge', name: 'jackson-coreutils', version: '1.8'
|
|
// https://mvnrepository.com/artifact/com.github.fge/json-schema-core
|
|
compile group: 'com.github.fge', name: 'json-schema-core', version: '1.2.5'
|
|
|
|
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
|
|
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.9.0'
|
|
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
|
|
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.8.0'
|
|
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
|
|
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.0'
|
|
compile(group: "com.github.java-json-tools", name: "json-schema-validator", version: "2.2.8");
|
|
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.10.0'
|
|
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.10.0'
|
|
// https://mvnrepository.com/artifact/commons-cli/commons-cli
|
|
compile group: 'commons-cli', name: 'commons-cli', version: '1.2'
|
|
|
|
// https://mvnrepository.com/artifact/mysql/mysql-connector-java
|
|
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.6'
|
|
|
|
// https://mvnrepository.com/artifact/org.postgresql/postgresql
|
|
compile group: 'org.postgresql', name: 'postgresql', version: '9.4-1201-jdbc41'
|
|
|
|
// This lib has to be manually downloaded from Oracle
|
|
dependencies {compile files('lib/ojdbc8.jar')}
|
|
}
|
|
|
|
run {
|
|
if (project.hasProperty("appArgs")) {
|
|
args(appArgs.split(' '))
|
|
}
|
|
// Below is another way to add args but this causes gradle to
|
|
// always invoke the run application task
|
|
// args = ["-c","$config","-t","$time","-d","$dir"]
|
|
}
|
|
|
|
spotbugs {
|
|
toolVersion = '4.0.0-beta3'
|
|
ignoreFailures = true
|
|
}
|
|
|
|
// Note (07-29-2019): the HTML report for spotbugs is currently broken
|
|
tasks.withType(com.github.spotbugs.SpotBugsTask) {
|
|
reports {
|
|
xml.enabled true
|
|
html.enabled false
|
|
}
|
|
}
|
|
|
|
import de.undercouch.gradle.tasks.download.Download
|
|
task downloadJars(type: Download) {
|
|
src ([
|
|
'https://github.com/google/google-java-format/releases/download/google-java-format-1.5/google-java-format-1.5-all-deps.jar',
|
|
'https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.8/checkstyle-8.8-all.jar'
|
|
])
|
|
dest libsDir
|
|
overwrite false
|
|
}
|
|
|
|
build.finalizedBy(downloadJars)
|