Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
seebees committed Oct 19, 2023
1 parent f7f63c5 commit 836660c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ plugins {
`signing`
id("com.github.johnrengelman.shadow") version "7.1.2"
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
id("com.diffplug.spotless") version "6.22.0"
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
id("com.diffplug.spotless") version "6.22.0"
}
}

group = "software.amazon.cryptography"
Expand Down
2 changes: 1 addition & 1 deletion AwsCryptographyPrimitives/runtimes/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import javax.annotation.Nullable
plugins {
`java-library`
`maven-publish`
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
id("com.diffplug.spotless") version "6.22.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion ComAmazonawsDynamodb/runtimes/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import javax.annotation.Nullable
plugins {
`java-library`
`maven-publish`
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
id("com.diffplug.spotless") version "6.22.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion ComAmazonawsKms/runtimes/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import javax.annotation.Nullable
plugins {
`java-library`
`maven-publish`
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
id("com.diffplug.spotless") version "6.22.0"
}
}
Expand Down
4 changes: 2 additions & 2 deletions StandardLibrary/runtimes/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import javax.annotation.Nullable
plugins {
`java-library`
`maven-publish`
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
id("com.diffplug.spotless") version "6.22.0"
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
id("com.diffplug.spotless") version "6.22.0"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tasks.wrapper {
plugins {
`java-library`
`maven-publish`
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
if (JavaVersion.current() >= JavaVersion.VERSION_11) {
id("com.diffplug.spotless") version "6.22.0"
}
}
Expand Down

0 comments on commit 836660c

Please sign in to comment.