Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
chore: Update to use new ido logging api
Browse files Browse the repository at this point in the history
chore: Update for breaking ido features changes
  • Loading branch information
0ffz committed Mar 16, 2024
1 parent d63636f commit 7021e4b
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 20 deletions.
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(idofrontLibs.plugins.mia.kotlin.jvm)
alias(idofrontLibs.plugins.kotlinx.serialization)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
group=com.mineinabyss
version=0.24
idofrontVersion=0.22.3
idofrontVersion=0.23.0-dev.7
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
gearyPaper = "0.29.12-dev.3"
gearyPaper = "0.29.12-dev.6"

[libraries]
geary-papermc = { module = "com.mineinabyss:geary-papermc", version.ref = "gearyPaper" }
15 changes: 0 additions & 15 deletions mobzy-core/src/main/kotlin/com/mineinabyss/mobzy/MobzyHelpers.kt

This file was deleted.

1 change: 0 additions & 1 deletion mobzy-modelengine/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
id(idofrontLibs.plugins.mia.kotlin.jvm.get().pluginId)
id(idofrontLibs.plugins.mia.papermc.get().pluginId)
Expand Down
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pluginManagement {
repositories {
gradlePluginPortal()
maven("https://repo.mineinabyss.com/releases")
maven("https://repo.mineinabyss.com/snapshots")
google()
mavenLocal()
}
Expand All @@ -22,6 +23,7 @@ dependencyResolutionManagement {

repositories {
maven("https://repo.mineinabyss.com/releases")
maven("https://repo.mineinabyss.com/snapshots")
mavenLocal()
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/mineinabyss/mobzy/MobzyPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ class MobzyPlugin : JavaPlugin() {
}
}

class MobzyFeatureManager(val plugin: JavaPlugin) : FeatureManager<MobzyContext>({ MobzyContext(plugin) })
class MobzyFeatureManager(plugin: JavaPlugin) : FeatureManager<MobzyContext>(plugin, { MobzyContext(plugin) })
}

0 comments on commit 7021e4b

Please sign in to comment.