2016-07-01 21:13:49 +00:00
|
|
|
repositories {
|
2018-12-17 19:57:21 +00:00
|
|
|
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }
|
2019-05-11 02:42:07 +00:00
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
2018-08-10 15:01:10 +00:00
|
|
|
maven { url "http://nexus.hc.to/content/repositories/pub_releases" }
|
2019-05-11 02:42:07 +00:00
|
|
|
maven { url "https://repo.codemc.org/repository/maven-public" }
|
2019-05-17 18:26:47 +00:00
|
|
|
//maven { url 'http://repo.onarandombox.com/content/groups/public'}
|
2019-05-11 02:42:07 +00:00
|
|
|
maven { url 'https://papermc.io/repo/repository/maven-public/' }
|
2016-11-21 03:24:27 +00:00
|
|
|
mavenLocal()
|
2016-07-01 21:13:49 +00:00
|
|
|
}
|
|
|
|
|
2016-02-23 04:11:28 +00:00
|
|
|
dependencies {
|
2019-04-03 16:15:09 +00:00
|
|
|
implementation project(':Core')
|
2016-02-23 04:11:28 +00:00
|
|
|
compile project(':Core')
|
2019-06-27 14:18:54 +00:00
|
|
|
compile 'com.destroystokyo.paper:paper-api:1.14.3-R0.1-SNAPSHOT'
|
2019-05-17 18:26:47 +00:00
|
|
|
//implementation 'com.onarandombox.multiversecore:Multiverse-Core:3.0.0-SNAPSHOT'
|
2019-06-27 14:18:54 +00:00
|
|
|
implementation 'org.spigotmc:spigot-api:1.14.3-R0.1-SNAPSHOT'
|
|
|
|
compile(group: 'com.sk89q.worldedit', name: 'worldedit-bukkit', version: '7.0.0')
|
2018-12-21 16:26:19 +00:00
|
|
|
compile("net.milkbowl.vault:VaultAPI:1.7") {
|
2016-11-21 03:24:27 +00:00
|
|
|
exclude module: 'bukkit'
|
|
|
|
}
|
2016-02-23 04:11:28 +00:00
|
|
|
}
|
|
|
|
|
2018-11-14 23:06:20 +00:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2016-02-26 12:55:21 +00:00
|
|
|
|
|
|
|
processResources {
|
|
|
|
from('src/main/resources') {
|
|
|
|
include 'plugin.yml'
|
|
|
|
expand(
|
2018-08-10 15:01:10 +00:00
|
|
|
name: project.parent.name,
|
|
|
|
version: project.parent.version
|
2016-02-26 12:55:21 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2016-02-27 05:05:21 +00:00
|
|
|
// We only want the shadow jar produced
|
|
|
|
jar.enabled = false
|
2016-07-01 21:13:49 +00:00
|
|
|
|
2016-02-23 04:11:28 +00:00
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
|
|
|
include(dependency(':Core'))
|
2019-03-18 18:49:22 +00:00
|
|
|
// update notification stuff
|
2019-04-23 21:41:06 +00:00
|
|
|
include(dependency('com.github.Sauilitired:Jenkins4J:2.0-SNAPSHOT'))
|
2019-04-23 22:03:52 +00:00
|
|
|
include(dependency('com.squareup.retrofit2:retrofit:2.4.0'))
|
|
|
|
include(dependency('com.squareup.okhttp3:okhttp:3.14.0'))
|
2019-03-18 18:49:22 +00:00
|
|
|
include(dependency('com.squareup.okio:okio:2.2.2'))
|
2019-04-23 21:27:32 +00:00
|
|
|
include(dependency('org.jetbrains.kotlin:kotlin-stdlib:1.3.30'))
|
2016-02-23 04:11:28 +00:00
|
|
|
}
|
2016-02-26 12:55:21 +00:00
|
|
|
archiveName = "${parent.name}-${project.name}-${parent.version}.jar"
|
2016-02-27 10:07:42 +00:00
|
|
|
destinationDir = file '../target'
|
2016-02-26 12:55:21 +00:00
|
|
|
}
|
2016-07-01 21:13:49 +00:00
|
|
|
|
2016-02-26 12:55:21 +00:00
|
|
|
shadowJar.doLast {
|
|
|
|
task ->
|
2018-08-10 15:01:10 +00:00
|
|
|
ant.checksum file: task.archivePath
|
2016-02-23 04:11:28 +00:00
|
|
|
}
|
|
|
|
|
2018-12-21 16:26:19 +00:00
|
|
|
build.dependsOn(shadowJar)
|