mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-01-09 08:28:30 +00:00
4a7112a0a5
Add some 1.9 blocks to chest content with schematic paste Restructure tileentity placement from schematic (will soon add signs etc) Prepare for release 3.3.3
37 lines
No EOL
1.1 KiB
Groovy
37 lines
No EOL
1.1 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
|
|
}
|
|
}
|
|
|
|
group = 'com.intellectualcrafters'
|
|
version = '3.3.3'
|
|
description = """PlotSquared"""
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
dependencies {
|
|
compile(group: 'com.sk89q', name: 'worldedit', version:'6.0.0-SNAPSHOT') {
|
|
exclude(module: 'bukkit-classloader-check')
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {url "http://empcraft.com/maven2"}
|
|
maven {url "http://repo.mcstats.org/content/repositories/public"}
|
|
maven {url "https://hub.spigotmc.org/nexus/content/groups/public/"}
|
|
maven {url "http://maven.sk89q.com/repo/"}
|
|
maven {url "http://nexus.theyeticave.net/content/repositories/pub_releases"}
|
|
maven {url "http://repo.maven.apache.org/maven2"}
|
|
}
|
|
} |