Skip to content

Commit

Permalink
Merge pull request #27 from MineInAbyss/develop
Browse files Browse the repository at this point in the history
Move in Looty, some of Mobzy, Geary 0.26.0
  • Loading branch information
0ffz authored May 31, 2024
2 parents 831348f + 29c9deb commit 11f77ed
Show file tree
Hide file tree
Showing 161 changed files with 2,133 additions and 2,544 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
java-version: 21
cache: gradle

- name: Build
Expand Down
30 changes: 16 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

val idofrontVersion: String by project

plugins {
Expand All @@ -8,10 +6,19 @@ plugins {
alias(idofrontLibs.plugins.mia.kotlin.jvm)
alias(idofrontLibs.plugins.dokka) apply false
alias(idofrontLibs.plugins.mia.autoversion)
idea
}

idea {
module {
isDownloadJavadoc = true
isDownloadSources = true
}
}

dependencies {
api(project(":geary-papermc-tracking"))
api(project(":geary-papermc-integrations"))
api(project(":geary-papermc-bridge"))
api(gearyLibs.core)
api(gearyLibs.autoscan)
Expand All @@ -26,12 +33,9 @@ allprojects {

repositories {
mavenCentral()
google()
maven("https://repo.mineinabyss.com/releases")
maven("https://repo.mineinabyss.com/snapshots")
maven("https://raw.githubusercontent.com/TheBlackEntity/PlugMan/repository/")
maven("https://jitpack.io")
maven("https://repo.codemc.io/repository/nms/")
maven("https://mvn.lumine.io/repository/maven-public/")
mavenLocal()
}

Expand All @@ -41,14 +45,12 @@ allprojects {
testImplementation(libs.bundles.idofront.core)
}

tasks {
withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs += listOf(
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
"-opt-in=kotlin.ExperimentalUnsignedTypes",
)
}
kotlin {
compilerOptions {
freeCompilerArgs.addAll(
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
"-opt-in=kotlin.ExperimentalUnsignedTypes",
)
}
}
}
Expand Down
4 changes: 0 additions & 4 deletions geary-papermc-bridge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ dependencies {
implementation(gearyLibs.serialization)
implementation(gearyLibs.autoscan)

// Plugins
compileOnly(libs.plugman)
compileOnly(idofrontLibs.minecraft.plugin.mythic.dist)

// MineInAbyss platform
compileOnly(idofrontLibs.kotlin.stdlib)
compileOnly(idofrontLibs.kotlinx.serialization.json)
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 11f77ed

Please sign in to comment.