Skip to content

Commit

Permalink
Merge pull request #84 from outfoxx/task/gradle-update-8.2.1
Browse files Browse the repository at this point in the history
Update to Gradle 8.2.1
  • Loading branch information
kdubb committed Jul 27, 2023
2 parents 8675d02 + 00fe623 commit c3e4176
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 17 deletions.
12 changes: 4 additions & 8 deletions gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,15 @@ tasks {
}

gradlePlugin {
website = "https://outfoxx.github.io/sunday"
vcsUrl = "https://github.com/outfoxx/sunday-generator"
plugins {
register("sunday") {
create("sunday") {
id = "io.outfoxx.sunday-generator"
implementationClass = "io.outfoxx.sunday.generator.gradle.SundayGeneratorPlugin"
displayName = "Sunday Generator - Gradle Plugin"
description = "Sunday Generator is a code generator for Sunday HTTP clients and JAX-RS server stubs in multiple languages."
tags = setOf("sunday", "raml", "kotlin", "swift", "typescript")
}
}
}

pluginBundle {
website = "https://outfoxx.github.io/sunday"
vcsUrl = "https://github.com/outfoxx/sunday-generator"
tags = setOf("sunday", "raml", "kotlin", "swift", "typescript")
description = "Sunday Generator is a code generator for Sunday HTTP clients and JAX-RS server stubs in multiple languages."
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class GradlePluginTests {
import static io.outfoxx.sunday.generator.GenerationMode.*
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.31'
id 'org.jetbrains.kotlin.jvm' version '1.8.20'
id 'io.outfoxx.sunday-generator'
}
Expand Down Expand Up @@ -99,6 +99,11 @@ class GradlePluginTests {
suppressWarnings = true
}
}
java {
sourceCompatibility = "11"
targetCompatibility = "11"
}
""".trimIndent()

buildFile.writeText(buildFileContent)
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=1g

releaseVersion=2.0.0-SNAPSHOT

kotlinVersion=1.7
kotlinVersion=1.8
javaVersion=11

kotlinPluginVersion=1.7.21
dokkaPluginVersion=1.7.20
kotlinPluginVersion=1.8.20
dokkaPluginVersion=1.8.20
jibPluginVersion=3.3.1
shadowPluginVersion=7.1.2
shadowPluginVersion=8.1.1
licenserPluginVersion=2.0.1
kotlinterPluginVersion=3.4.4
detektPluginVersion=1.22.0
githubReleasePluginVersion=2.4.1
pluginPublishPluginVersion=1.0.0
sonarqubeVersion=3.5.0.2730
pluginPublishPluginVersion=1.2.0
sonarqubeVersion=4.3.0.3225
nexusPublishPluginVersion=1.1.0

slf4jVersion=2.0.4
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit c3e4176

Please sign in to comment.