Skip to content

Commit

Permalink
Gradle changes
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankoppier committed Jun 15, 2024
1 parent c3a4f24 commit 83fcf0c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
9 changes: 4 additions & 5 deletions gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
alias(libs.plugins.kotlin.jvm)
id("java-gradle-plugin")
id("maven-publish")
alias(libs.plugins.kotlin.jvm) version embeddedKotlinVersion
alias(libs.plugins.gradle.plugin.publish)
}

dependencies {
Expand All @@ -13,8 +12,8 @@ gradlePlugin {
create("mappie") {
id = "io.github.mappie"
displayName = "Mappie Gradle Plugin"
description = "Kotlin compiler plugin for generating mapping functions"
description = "Kotlin compiler plugin for generating object mappers"
implementationClass = "io.github.mappie.MappieGradlePlugin"
}
}
}
}
5 changes: 1 addition & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
[versions]
kotlin = "2.0.0"
auto-service = "1.1.0"

[libraries]
kotlin-compiler-embeddable = { module = "org.jetbrains.kotlin:kotlin-compiler-embeddable", version.ref = "kotlin" }
kotlin-gradle-plugin-api = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin-api", version.ref = "kotlin" }
auto-service-annotations = { module = "com.google.auto.service:auto-service-annotations", version.ref = "auto-service" }
auto-service = { module = "com.google.auto.service:auto-service", version.ref = "auto-service" }
junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params", version = "5.1.0" }

[plugins]
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }

gradle-plugin-publish = { id = "com.gradle.plugin-publish", version = "1.2.1" }

0 comments on commit 83fcf0c

Please sign in to comment.