mirror of
https://github.com/Auxilor/EcoBits.git
synced 2025-12-19 15:09:19 +00:00
Updated to eco 6.77.0
This commit is contained in:
@@ -41,7 +41,7 @@ allprojects {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly("com.willfp:eco:6.60.0")
|
||||
compileOnly("com.willfp:eco:6.77.0")
|
||||
compileOnly("org.jetbrains:annotations:23.0.0")
|
||||
compileOnly("org.jetbrains.kotlin:kotlin-stdlib:2.1.0")
|
||||
|
||||
@@ -55,14 +55,14 @@ allprojects {
|
||||
|
||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
||||
compilerOptions {
|
||||
jvmTarget.set(JvmTarget.JVM_17)
|
||||
jvmTarget.set(JvmTarget.JVM_21)
|
||||
}
|
||||
}
|
||||
|
||||
tasks {
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
sourceCompatibility = JavaVersion.VERSION_21
|
||||
targetCompatibility = JavaVersion.VERSION_21
|
||||
}
|
||||
|
||||
compileJava {
|
||||
|
||||
@@ -2,7 +2,7 @@ group = "com.willfp"
|
||||
version = rootProject.version
|
||||
|
||||
dependencies {
|
||||
compileOnly("org.spigotmc:spigot-api:1.17.1-R0.1-SNAPSHOT")
|
||||
compileOnly("org.spigotmc:spigot-api:1.21.4-R0.1-SNAPSHOT")
|
||||
compileOnly("com.github.MilkBowl:VaultAPI:1.7")
|
||||
|
||||
compileOnly(fileTree("../../lib") { include("*.jar") })
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.willfp.ecobits
|
||||
|
||||
import com.willfp.eco.core.EcoPlugin
|
||||
import com.willfp.eco.core.Prerequisite
|
||||
import com.willfp.eco.core.command.impl.PluginCommand
|
||||
import com.willfp.eco.core.integrations.IntegrationLoader
|
||||
import com.willfp.eco.util.ClassUtils
|
||||
@@ -38,8 +39,10 @@ class EcoBitsPlugin : EcoPlugin() {
|
||||
)
|
||||
}
|
||||
|
||||
@Deprecated(message = "Will be removed in favour of eco-api-verison in eco.yml")
|
||||
@Suppress("REMOVAL")
|
||||
override fun getMinimumEcoVersion(): String {
|
||||
return "6.60.0"
|
||||
return "6.77.0"
|
||||
}
|
||||
|
||||
companion object {
|
||||
|
||||
@@ -3,7 +3,6 @@ package com.willfp.ecobits.currencies
|
||||
import com.google.common.collect.BiMap
|
||||
import com.google.common.collect.HashBiMap
|
||||
import com.google.common.collect.ImmutableList
|
||||
import com.willfp.eco.core.config.updating.ConfigUpdater
|
||||
import com.willfp.ecobits.EcoBitsPlugin
|
||||
|
||||
object Currencies {
|
||||
|
||||
@@ -3,3 +3,4 @@ options:
|
||||
bstats-id: 16908
|
||||
color: "	efaff"
|
||||
uses-reflective-reload: false
|
||||
eco-api-version: 6.77.0
|
||||
|
||||
Reference in New Issue
Block a user