Skip to content

Commit

Permalink
Fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
James Wood authored and James Wood committed Jan 21, 2025
1 parent f8aa62e commit b098693
Showing 1 changed file with 27 additions and 28 deletions.
55 changes: 27 additions & 28 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ plugins {
id 'java'
id 'jacoco'
id "com.github.johnrengelman.shadow" version "7.0.0"
id 'com.github.ben-manes.versions' version '0.36.0'
}

allprojects {
Expand Down Expand Up @@ -49,48 +50,46 @@ configurations.all {
}

dependencies {
compile group: 'com.vividsolutions', name: 'jts', version: '1.13'
compile group: 'gov.nasa.earthdata', name: 'cumulus-message-adapter', version: '2.0.0'
//implementation group: 'gov.nasa.earthdata', name: 'cumulus-message-adapter', version: '1.3.9'
implementation group: 'com.vividsolutions', name: 'jts', version: '1.13'
implementation group: 'gov.nasa.earthdata', name: 'cumulus-message-adapter', version: '2.0.0'

compile group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.12.740'
compile group: 'com.amazonaws', name: 'aws-lambda-java-core', version: '1.2.1'
compile group: 'com.amazonaws', name: 'aws-java-sdk-stepfunctions', version: '1.12.363'
implementation group: 'com.amazonaws', name: 'aws-java-sdk-s3', version: '1.12.740'
implementation group: 'com.amazonaws', name: 'aws-lambda-java-core', version: '1.2.1'
implementation group: 'com.amazonaws', name: 'aws-java-sdk-stepfunctions', version: '1.12.363'

compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
compile group: 'com.google.code.gson', name: 'gson', version: '2.9.0'
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.0'

compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
testCompile group: 'junit', name: 'junit', version: '4.13.2'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
testImplementation group: 'junit', name: 'junit', version: '4.13.2'

compile group: 'org.json', name: 'json', version: '20231013'
implementation group: 'org.json', name: 'json', version: '20231013'

compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
compile group: 'commons-io', name: 'commons-io', version: '2.18.0'
compile group: 'edu.ucar', name: 'cdm-core', version: '5.7.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.18.0'
implementation group: 'edu.ucar', name: 'cdm-core', version: '5.7.0'

compile group: 'org.geotools', name: 'gt-shapefile', version: '29.2'
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
implementation group: 'org.geotools', name: 'gt-shapefile', version: '29.2'
implementation group: 'commons-cli', name: 'commons-cli', version: '1.4'

compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.17.2'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.2'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.2'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.17.2'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.2'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.2'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
testCompile group: 'org.mockito', name: 'mockito-core', version: '3.6.0'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.6.0'

testImplementation 'org.openjdk.jmh:jmh-core:1.26'
testAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.26'

antJUnit 'org.apache.ant:ant-junit:1.10.11'
compile group: "com.github.everit-org.json-schema", name: "org.everit.json.schema", version: "1.14.1"
compile group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2'
implementation group: "com.github.everit-org.json-schema", name: "org.everit.json.schema", version: "1.14.1"
implementation group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.2'

compile group: 'com.beust', name: 'jcommander', version: '1.82'
compile group: 'org.jdom', name: 'jdom2', version: '2.0.6.1'

implementation group: 'com.beust', name: 'jcommander', version: '1.82'
implementation group: 'org.jdom', name: 'jdom2', version: '2.0.6.1'
}

compileJava.dependsOn(processResources)
Expand Down Expand Up @@ -250,7 +249,7 @@ task buildZip(type: Zip) {
into('lib') {
from configurations.runtime
}
archiveName "forge-${getVersionName()}.zip"
archiveFileName="forge-${getVersionName()}.zip"
}

task getServiceName() {
Expand Down Expand Up @@ -290,7 +289,7 @@ task buildLambda(type: Zip) {
into('lib') {
from configurations.runtime
}
archiveName "forge-lambda.zip"
archiveFileName="forge-lambda.zip"
}

task currentVersion() {
Expand Down

0 comments on commit b098693

Please sign in to comment.