|
|
|
@ -5,7 +5,8 @@ plugins { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
group 'net.deliciousreya' |
|
|
|
|
version '1.0-SNAPSHOT' |
|
|
|
|
description 'A Minecraft plugin to allow players to create portals they can teleport between.' |
|
|
|
|
version '0.1' |
|
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8 |
|
|
|
|
|
|
|
|
@ -17,11 +18,24 @@ repositories { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
dependencies { |
|
|
|
|
compileOnly bukkit() |
|
|
|
|
compile group: 'com.destroystokyo.paper', name: 'paper-api', version: '1.13.2-R0.1-SNAPSHOT' |
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" |
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12' |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bukkit { |
|
|
|
|
version = "1.13.2" |
|
|
|
|
|
|
|
|
|
// Attributes for plugin.yml |
|
|
|
|
meta { |
|
|
|
|
name = "PortalGenerator" |
|
|
|
|
description = "A Minecraft plugin to allow players to create portals they can teleport between." |
|
|
|
|
main = "net.deliciousreya.minecraftportal.MinecraftPortalPlugin" |
|
|
|
|
version = "0.1" |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
compileKotlin { |
|
|
|
|
kotlinOptions.jvmTarget = "1.8" |
|
|
|
|
} |
|
|
|
|