Skip to content

Commit

Permalink
Fix gradle build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Jan 9, 2023
1 parent d9d4421 commit d5c2433
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
13 changes: 4 additions & 9 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,19 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
groovy
`kotlin-dsl`
kotlin("jvm") version "1.8.0"
kotlin("plugin.serialization") version "1.8.0"
}

group = "me.schlaubi"
version = "3.0.1"

repositories {
mavenCentral()
gradlePluginPortal()
}

dependencies {
implementation(kotlin("gradle-plugina-api"))
implementation(kotlin("gradle-plugin"))
implementation(kotlin("serialization"))
val kotlinVersion = "1.8.0"
implementation(kotlin("gradle-plugin", kotlinVersion))
implementation(kotlin("serialization", kotlinVersion))
implementation(kotlin("gradle-plugin-api", kotlinVersion))
implementation("org.jetbrains.dokka", "dokka-gradle-plugin", "1.7.20")
implementation(kotlin("gradle-plugin-api"))
implementation(gradleApi())
implementation(localGroovy())
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit d5c2433

Please sign in to comment.