Skip to content

Commit

Permalink
feat!: upgrading to Java 17
Browse files Browse the repository at this point in the history
fix: adding one more update
  • Loading branch information
Greg Felix committed Jul 31, 2023
1 parent e821c27 commit 1a7117f
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,34 +1,28 @@
plugins {
id "com.github.mxenabled.hush" version "2.3.5"
id "com.github.mxenabled.vogue" version "1.0.2"
id "com.github.mxenabled.vogue" version "1.+"
id "groovy"
id "java-gradle-plugin"
id "java-library"
id "maven-publish"
id "com.github.ben-manes.versions" version "0.43.0"
id "com.github.ben-manes.versions" version "0.47.0"
}

group "com.mx.coppuccino"
version "3.2.10" // x-release-please-version
sourceCompatibility = 1.8
targetCompatibility = 1.8
version "4.0.0" // x-release-please-version
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

repositories {
gradlePluginPortal()
mavenLocal()
}

dependencies {
// Need to keep at 4.7.0. 4.8.0 is not compatible with Java 8.
implementation "ru.vyarus:gradle-quality-plugin:4.7.0"
implementation "com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.13"
// Need to keep at 6.6.0 until issues with M1 Macs is addressed.
implementation("com.diffplug.spotless:spotless-plugin-gradle:6.6.0") {
exclude group: "com.google.googlejavaformat", module: "google-java-format-parent"
}
implementation "com.google.googlejavaformat:google-java-format-parent:1.15.0"
implementation "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.22.0-RC2"
implementation "org.kordamp.gradle:jacoco-gradle-plugin:0.47.0"
implementation "ru.vyarus:gradle-quality-plugin:4.9.0"
implementation "com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.14"
implementation "com.diffplug.spotless:spotless-plugin-gradle:6.20.0"
implementation "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.1"
implementation "org.kordamp.gradle:jacoco-gradle-plugin:0.51.0"
}

project.description = "Java style, standard, and safety enforcement"
Expand Down

0 comments on commit 1a7117f

Please sign in to comment.