Skip to content

Commit

Permalink
fix: Java Gradle 7 Build Test Data Issue (#2816)
Browse files Browse the repository at this point in the history
* Updated Deprecated compile to implementation

* Updated Tabs to Spaces

* Updated for Kotlin

* Updated More Tabs to Spaces
  • Loading branch information
CoshUS committed Apr 16, 2021
1 parent 5f87fb2 commit 4ab1fe3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ repositories {

dependencies {
implementation("software.amazon.awssdk:annotations:2.1.0")
compile("com.amazonaws:aws-lambda-java-core:1.1.0")
implementation("com.amazonaws:aws-lambda-java-core:1.1.0")
}
4 changes: 1 addition & 3 deletions tests/integration/testdata/buildcmd/Java/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@ repositories {

dependencies {
implementation 'software.amazon.awssdk:annotations:2.1.0'
compile (
'com.amazonaws:aws-lambda-java-core:1.1.0'
)
implementation 'com.amazonaws:aws-lambda-java-core:1.1.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@ repositories {

dependencies {
implementation 'software.amazon.awssdk:annotations:2.1.0'
compile (
'com.amazonaws:aws-lambda-java-core:1.1.0'
)
implementation 'com.amazonaws:aws-lambda-java-core:1.1.0'
}

0 comments on commit 4ab1fe3

Please sign in to comment.