2024-01-15 19:01:35 +00:00

19 lines
409 B
Groovy

description = "Introduction to Gradle Lint Plugin"
ext {
awsVersion = '2.20.83'
}
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
dependencies {
implementation platform("software.amazon.awssdk:bom:$awsVersion")
testImplementation('junit:junit:4.13.1')
gradleLint.ignore('unused-dependency', 'dependency-parentheses') {
implementation('software.amazon.awssdk:sts')
}
}