diff --git a/addon.gradle b/addon.gradle deleted file mode 100644 index f70506f..0000000 --- a/addon.gradle +++ /dev/null @@ -1 +0,0 @@ -apply plugin: 'org.jetbrains.kotlin.jvm' diff --git a/build.gradle b/build.gradle deleted file mode 100644 index e57a16f..0000000 --- a/build.gradle +++ /dev/null @@ -1,5 +0,0 @@ -//version: 1707058017 - -plugins { - id 'com.gtnewhorizons.gtnhconvention' -} diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 0000000..62e29fe --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,4 @@ +plugins { + id("com.gtnewhorizons.gtnhconvention") + id("org.jetbrains.kotlin.jvm") +} diff --git a/dependencies.gradle b/dependencies.gradle index 2ea6ca5..3fc620b 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,10 +1,10 @@ // Add your dependencies here dependencies { - shadowImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.0") - shadowImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") - shadowImplementation("org.jetbrains.kotlin:kotlin-reflect:1.8.0") - shadowImplementation("org.jetbrains:annotations") - shadowImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4") - shadowImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.6.4") + shadowImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.9.24") + shadowImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.24") + shadowImplementation("org.jetbrains.kotlin:kotlin-reflect:1.9.24") + shadowImplementation("org.jetbrains:annotations:24.1.0") + shadowImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1") + shadowImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.8.1") } diff --git a/gradle.properties b/gradle.properties index 69c1379..936aa7f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -117,7 +117,7 @@ minimizeShadowedDependencies = false # If disabled, won't rename the shadowed classes. relocateShadowedDependencies = false -# Adds the GTNH maven, CurseMaven, IC2/Player maven, and some more well-known 1.7.10 repositories. +# Adds the GTNH maven, CurseMaven, Modrinth, and some more well-known 1.7.10 repositories. includeWellKnownRepositories = true # Change these to your Maven coordinates if you want to publish to a custom Maven repository instead of the default GTNH Maven. diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a80b22c..b82aa23 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle b/settings.gradle index 16a5b4c..94c2daf 100644 --- a/settings.gradle +++ b/settings.gradle @@ -17,7 +17,7 @@ pluginManagement { } plugins { - id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.14' + id 'com.gtnewhorizons.gtnhsettingsconvention' version '1.0.22' }