EcoEnchants/build.gradle

121 lines
2.5 KiB
Groovy
Raw Normal View History

2020-11-17 15:42:37 +01:00
plugins {
id 'java-library'
id 'maven-publish'
id 'java'
}
allprojects {
2020-11-19 09:44:26 +01:00
apply plugin: 'java'
2020-11-17 15:42:37 +01:00
repositories {
mavenCentral()
jcenter()
mavenLocal()
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
maven {
url 'https://repo.codemc.org/repository/maven-public'
}
maven {
url 'https://oss.sonatype.org/content/groups/public/'
}
maven {
url 'https://maven.enginehub.org/repo/'
}
maven {
url 'https://jitpack.io'
}
maven {
url 'https://ci.ender.zone/plugin/repository/project/'
}
maven {
url 'https://ci.ender.zone/plugin/repository/everything/'
}
maven {
url 'https://repo.md-5.net/content/repositories/snapshots/'
}
maven {
url 'https://repo.janmm14.de/repository/public/'
}
maven {
url 'https://repo.dmulloy2.net/nexus/repository/public/'
}
maven {
url 'https://papermc.io/repo/repository/maven-public/'
}
maven {
url 'https://repo.maven.apache.org/maven2/'
}
maven {
url 'https://repo.dustplanet.de/artifactory/ext-release-local/'
}
maven {
url 'https://maven.seyfahni.de/repository/snapshots/'
}
maven {
url 'https://libraries.minecraft.net/'
}
maven {
url 'https://repo.spongepowered.org/maven/'
}
maven {
url 'https://org.kitteh.pastegg'
}
maven {
2020-11-17 16:33:44 +01:00
url 'https://repo.mikeprimm.com/'
2020-11-17 15:42:37 +01:00
}
maven {
2020-11-17 16:33:44 +01:00
url 'https://maven.sk89q.com/repo/'
2020-11-17 15:42:37 +01:00
}
maven {
url 'https://github.com/factions-site/repo/raw/public/'
}
maven {
url 'https://repo.extendedclip.com/content/repositories/placeholderapi/'
}
}
2020-11-17 16:22:15 +01:00
tasks.withType(JavaCompile) {
2020-11-17 16:33:44 +01:00
options.deprecation = true
2020-11-17 16:22:15 +01:00
options.encoding = 'UTF-8'
}
compileJava.options.encoding = 'UTF-8'
2020-11-17 15:42:37 +01:00
}
2020-11-20 13:50:33 +01:00
clean.doLast {
file("${rootDir}/bin").deleteDir()
}
2020-11-17 15:42:37 +01:00
group = 'com.willfp.ecoenchants'
archivesBaseName = project.name
version = project.version
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
2020-11-17 16:22:15 +01:00
}