Skip to content

Commit

Permalink
Revert gradle plugin package change
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Nov 4, 2024
1 parent 446a202 commit a0aa8d1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {
dependencies {
implementation(kotlin("gradle-plugin-api", libs.versions.kotlin.get()))
implementation(kotlin("gradle-plugin", libs.versions.kotlin.get()))
implementation("dev.schlaubi.mikbot", "gradle-plugin", "1.0.0")
implementation("dev.schlaubi", "gradle-plugin", "1.0.0")
implementation("com.google.devtools.ksp", "com.google.devtools.ksp.gradle.plugin", libs.versions.ksp.get())
implementation("org.jlleitschuh.gradle", "ktlint-gradle", "12.1.1")
implementation("com.github.gmazzo", "gradle-buildconfig-plugin", "3.1.0")
Expand Down
2 changes: 1 addition & 1 deletion gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
alias(libs.plugins.buildconfig)
}

group = "dev.schlaubi.mikbot"
group = "dev.schlaubi"
version = libs.versions.api.get()

repositories {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ coroutines = "1.9.0"
serialization = "1.7.3"
ktor = "3.0.1"
kord = "feature-user-apps-20241102.180018-12"
api = "4.0.2"
api = "4.0.3"
ksp = "2.0.21-1.0.26"
lavakord = "8.0.1"
kordex-plugin = "1.5.5"
Expand Down
4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"prHourlyLimit": 6,
"packageRules": [
{
"matchPackageNames": ["/mikbot/"],
"matchPackageNames": ["/mikbot/", "gradle-plugin"],
"matchManagers": ["gradle"],
"enabled": false
}
]
],
}
3 changes: 1 addition & 2 deletions runtime/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import com.github.jk1.license.render.JsonReportRenderer
import dev.schlaubi.mikbot.gradle.configureLicenseChecker
import kotlin.io.path.writeText

Expand Down Expand Up @@ -28,7 +27,7 @@ dependencies {
implementation(libs.gson)
implementation(libs.asm) // pf4j doesn't declare a real dep on it
implementation(libs.koin)
implementation("dev.schlaubi.mikbot:gradle-plugin") {
implementation("dev.schlaubi:gradle-plugin") {
// otherwise we would add entire Gradle in here
isTransitive = false
}
Expand Down

0 comments on commit a0aa8d1

Please sign in to comment.