mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-01-09 17:27:38 +00:00
use ivy repo
This commit is contained in:
parent
cf0c735cf3
commit
3e8fd842d8
@ -84,6 +84,12 @@ subprojects {
|
|||||||
maven { url "http://repo.spongepowered.org/maven" }
|
maven { url "http://repo.spongepowered.org/maven" }
|
||||||
maven { url "http://dl.bintray.com/tastybento/maven-repo" }
|
maven { url "http://dl.bintray.com/tastybento/maven-repo" }
|
||||||
maven { url "http://ci.emc.gs/nexus/content/groups/aikar/" }
|
maven { url "http://ci.emc.gs/nexus/content/groups/aikar/" }
|
||||||
|
ivy {
|
||||||
|
url 'https://ci.athion.net/job'
|
||||||
|
layout 'pattern', {
|
||||||
|
artifact '/[organisation]/[module]/artifact/[revision].[ext]'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
configurations.all {
|
configurations.all {
|
||||||
resolutionStrategy {
|
resolutionStrategy {
|
||||||
|
@ -7,9 +7,6 @@ repositories {
|
|||||||
maven { url "https://hub.spigotmc.org/nexus/content/groups/public" }
|
maven { url "https://hub.spigotmc.org/nexus/content/groups/public" }
|
||||||
maven { url "https://repo.codemc.org/repository/maven-public" }
|
maven { url "https://repo.codemc.org/repository/maven-public" }
|
||||||
maven { url "https://papermc.io/repo/repository/maven-public/" }
|
maven { url "https://papermc.io/repo/repository/maven-public/" }
|
||||||
flatDir {
|
|
||||||
dirs "$rootProject.projectDir/lib"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations.all { Configuration it ->
|
configurations.all { Configuration it ->
|
||||||
@ -18,13 +15,6 @@ configurations.all { Configuration it ->
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task downloadJarsToLibs(){
|
|
||||||
def f = new File('lib/spigot-1.14.jar')
|
|
||||||
if (!f.exists()) {
|
|
||||||
new URL('https://ci.athion.net/job/BuildTools/lastSuccessfulBuild/artifact/spigot-1.14.jar').withInputStream{ i -> f.withOutputStream{ it << i }}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile ('net.milkbowl.vault:VaultAPI:1.7')
|
compile ('net.milkbowl.vault:VaultAPI:1.7')
|
||||||
api project(':worldedit-core')
|
api project(':worldedit-core')
|
||||||
@ -35,8 +25,7 @@ dependencies {
|
|||||||
compile 'com.destroystokyo.paper:paper-api:1.14.3-R0.1-SNAPSHOT'
|
compile 'com.destroystokyo.paper:paper-api:1.14.3-R0.1-SNAPSHOT'
|
||||||
implementation('io.papermc:paperlib:1.0.2'){transitive = false}
|
implementation('io.papermc:paperlib:1.0.2'){transitive = false}
|
||||||
compile 'org.spigotmc:spigot:1.13.2-R0.1-SNAPSHOT'
|
compile 'org.spigotmc:spigot:1.13.2-R0.1-SNAPSHOT'
|
||||||
compile name: 'spigot-1.14.3'
|
compile 'BuildTools:lastSuccessfulBuild:spigot-1.14@jar'
|
||||||
// compile([fileTree(dir: 'lib', include: ['*.jar']),'commons-validator:commons-validator:1.4.1'])
|
|
||||||
implementation('com.sk89q.worldguard:worldguard-core:7.0.0-20190215.210421-39'){transitive = false}
|
implementation('com.sk89q.worldguard:worldguard-core:7.0.0-20190215.210421-39'){transitive = false}
|
||||||
implementation('com.sk89q.worldguard:worldguard-legacy:7.0.0-20190215.210421-39'){transitive = false}
|
implementation('com.sk89q.worldguard:worldguard-legacy:7.0.0-20190215.210421-39'){transitive = false}
|
||||||
implementation('com.massivecraft:factions:2.8.0'){transitive = false}
|
implementation('com.massivecraft:factions:2.8.0'){transitive = false}
|
||||||
|
@ -41,7 +41,6 @@ import net.minecraft.server.v1_14_R1.IBlockData;
|
|||||||
import net.minecraft.server.v1_14_R1.MinecraftKey;
|
import net.minecraft.server.v1_14_R1.MinecraftKey;
|
||||||
import net.minecraft.server.v1_14_R1.NBTTagCompound;
|
import net.minecraft.server.v1_14_R1.NBTTagCompound;
|
||||||
import net.minecraft.server.v1_14_R1.NBTTagInt;
|
import net.minecraft.server.v1_14_R1.NBTTagInt;
|
||||||
import net.minecraft.server.v1_14_R1.NibbleArray;
|
|
||||||
import net.minecraft.server.v1_14_R1.RegistryID;
|
import net.minecraft.server.v1_14_R1.RegistryID;
|
||||||
import net.minecraft.server.v1_14_R1.TileEntity;
|
import net.minecraft.server.v1_14_R1.TileEntity;
|
||||||
import org.bukkit.Chunk;
|
import org.bukkit.Chunk;
|
||||||
|
Loading…
Reference in New Issue
Block a user