Skip to content

Commit

Permalink
[ci skip] Make use of type safe gradle plugin accessors
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Sep 28, 2023
1 parent cafb664 commit 3f2f68b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import dev.schlaubi.mikbot.gradle.addRepositories

plugins {
id("dev.schlaubi.mikbot.gradle-plugin")
dev.schlaubi.mikbot.`gradle-plugin`
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/mikbot-module.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm")
id("org.jlleitschuh.gradle.ktlint")
org.jlleitschuh.gradle.ktlint
}

val experimentalAnnotations =
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/mikbot-template.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("com.github.gmazzo.buildconfig")
com.github.gmazzo.buildconfig
}

abstract class TemplateExtension {
Expand Down
4 changes: 2 additions & 2 deletions runtime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import java.nio.file.Files

plugins {
`mikbot-module`
kotlin("plugin.serialization") version "1.7.22"
alias(libs.plugins.kotlinx.serialization)
application
// This exists to add the removeVersion extension to this buildscript
id("dev.schlaubi.mikbot.gradle-plugin") apply false
dev.schlaubi.mikbot.`gradle-plugin` apply false
`mikbot-template`
}

Expand Down

0 comments on commit 3f2f68b

Please sign in to comment.