meexprox_plugin/bukkit/build.gradle
2024-12-08 02:36:12 +03:00

37 lines
761 B
Groovy

import static fr.il_totore.manadrop.MinecraftDependencyHelper.spigot as spigotDep
import static fr.il_totore.manadrop.MinecraftRepositoryHelper.*
plugins {
id 'fr.il_totore.manadrop' version '0.4.3'
}
spigot {
desc {
main "ru.themixray.meexprox.Meexprox"
apiVersion "1.8"
named rootProject.name
command {
named 'server'
description 'Connect to server'
permission 'meexprox.command.server'
}
}
}
processResources.finalizedBy(spigotPlugin)
buildTools {
versions '1.13', '1.15', '1.16', '1.19', '1.20'
workDir = File.createTempDir()
mavenPath = "mvn"
}
repositories {
mavenLocal()
spigotSnapshot()
}
dependencies {
compileOnly spigotDep("1.8")
}