Skip to content
Snippets Groups Projects
Commit 2d63b147 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add download plugin

parent 16a4775a
No related branches found
No related tags found
2 merge requests!648Production Release | nshmp-haz,!647Default nshm for Web Service
...@@ -6,6 +6,7 @@ plugins { ...@@ -6,6 +6,7 @@ plugins {
id "com.github.spotbugs" version "${spotbugsVersion}" id "com.github.spotbugs" version "${spotbugsVersion}"
id "com.palantir.git-version" version "${gitVersionVersion}" apply false id "com.palantir.git-version" version "${gitVersionVersion}" apply false
id "com.star-zero.gradle.githook" version "${githooksVersion}" id "com.star-zero.gradle.githook" version "${githooksVersion}"
id "de.undercouch.download" version "${downloadVersion}"
id "eclipse-wtp" id "eclipse-wtp"
id "jacoco" id "jacoco"
id "maven-publish" id "maven-publish"
...@@ -17,6 +18,7 @@ apply from: "${projectDir}/gradle/ext.gradle" ...@@ -17,6 +18,7 @@ apply from: "${projectDir}/gradle/ext.gradle"
apply from: "${projectDir}/gradle/jar.gradle" apply from: "${projectDir}/gradle/jar.gradle"
apply from: "${projectDir}/gradle/git-hooks.gradle" apply from: "${projectDir}/gradle/git-hooks.gradle"
apply from: "${projectDir}/gradle/node.gradle" apply from: "${projectDir}/gradle/node.gradle"
apply from: "${projectDir}/gradle/nshm.gradle"
apply from: "${projectDir}/gradle/repositories.gradle" apply from: "${projectDir}/gradle/repositories.gradle"
apply from: "${projectDir}/gradle/spotbugs.gradle" apply from: "${projectDir}/gradle/spotbugs.gradle"
apply from: "${projectDir}/gradle/spotless.gradle" apply from: "${projectDir}/gradle/spotless.gradle"
...@@ -52,6 +54,7 @@ tasks.withType(JavaCompile) { ...@@ -52,6 +54,7 @@ tasks.withType(JavaCompile) {
} }
tasks.withType(JavaExec) { tasks.withType(JavaExec) {
dependsOn downloadNshms
jvmArgs( jvmArgs(
'-noverify', '-noverify',
'-Xms2g', '-Xms2g',
...@@ -71,11 +74,6 @@ tasks.withType(com.github.spotbugs.snom.SpotBugsTask) { ...@@ -71,11 +74,6 @@ tasks.withType(com.github.spotbugs.snom.SpotBugsTask) {
} }
} }
task libsClean(type: Delete) {
delete libsDir
}
clean.dependsOn libsClean
test { test {
useJUnitPlatform() useJUnitPlatform()
......
...@@ -2,6 +2,7 @@ awsEc2Version = 1.11.619 ...@@ -2,6 +2,7 @@ awsEc2Version = 1.11.619
awsLambdaCoreVersion = 1.1.0 awsLambdaCoreVersion = 1.1.0
awsLambdaVersion = 1.11.461 awsLambdaVersion = 1.11.461
awsS3Version = 1.11.579 awsS3Version = 1.11.579
downloadVersion = 5.1.0
githooksVersion = 1.2.0 githooksVersion = 1.2.0
gitVersionVersion = 0.15.0 gitVersionVersion = 0.15.0
jacksonVersion = 2.9.0 jacksonVersion = 2.9.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment