1
0
Fork 0

Move plugin.yml to build.gradle

main
reya 5 years ago
parent 128e7d7375
commit 1370fb66b0
  1. 16
      build.gradle
  2. 3
      src/main/resources/plugin.yml

@ -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"
}

@ -1,3 +0,0 @@
name: PortalGenerator
main: net.deliciousreya.minecraftportal.MinecraftPortalPlugin
version: '0.1'
Loading…
Cancel
Save