EcoEnchants/build.gradle

130 lines
4.0 KiB
Groovy
Raw Normal View History

2020-11-17 15:42:37 +01:00
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '7.0.0'
2020-11-17 15:42:37 +01:00
id 'maven-publish'
id 'java'
2021-09-30 16:21:35 +02:00
id 'checkstyle'
2020-11-17 15:42:37 +01:00
}
2020-12-22 02:41:37 +01:00
dependencies {
2020-12-22 15:15:51 +01:00
implementation project(":eco-core").getSubprojects()
2020-12-22 02:41:37 +01:00
}
2020-11-17 15:42:37 +01:00
allprojects {
2020-11-19 09:44:26 +01:00
apply plugin: 'java'
2020-12-13 19:09:28 +01:00
apply plugin: 'maven-publish'
2020-12-22 02:41:37 +01:00
apply plugin: 'com.github.johnrengelman.shadow'
2020-11-17 15:42:37 +01:00
repositories {
mavenCentral()
2020-12-12 13:24:39 +01:00
mavenLocal()
2020-12-22 02:41:37 +01:00
maven { url 'https://jitpack.io' }
2020-12-12 13:09:53 +01:00
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
2020-12-12 20:06:44 +01:00
maven { url 'https://repo.codemc.org/repository/nms/' }
maven { url 'https://repo.codemc.org/repository/maven-public' }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url 'https://oss.sonatype.org/content/groups/public/' }
maven { url 'https://maven.enginehub.org/repo/' }
maven { url 'https://repo.essentialsx.net/releases/' }
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.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://libraries.minecraft.net/' }
maven { url 'https://repo.spongepowered.org/maven/' }
maven { url 'https://org.kitteh.pastegg' }
maven { url 'https://repo.mikeprimm.com/' }
maven { url 'https://maven.sk89q.com/repo/' }
maven { url 'https://github.com/factions-site/repo/raw/public/' }
maven { url 'https://mvn.lumine.io/repository/maven-public/' }
2020-12-22 02:41:37 +01:00
}
2020-12-22 15:07:44 +01:00
jar {
onlyIf { !sourceSets.main.allSource.files.isEmpty() }
}
shadowJar {
relocate('com.willfp.libreforge', 'com.willfp.ecoenchants.libreforge')
}
compileJava {
onlyIf { !sourceSets.main.allSource.files.isEmpty() }
}
2020-12-22 02:41:37 +01:00
dependencies {
2022-04-27 20:11:22 +02:00
compileOnly 'com.willfp:eco:6.35.1'
2020-12-23 15:11:17 +01:00
2022-02-18 12:25:53 +01:00
compileOnly 'org.jetbrains:annotations:22.0.0'
2021-11-01 22:27:58 +01:00
2022-02-18 12:25:53 +01:00
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
2020-12-23 15:11:17 +01:00
2022-02-18 12:25:53 +01:00
testCompileOnly 'org.projectlombok:lombok:1.18.22'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
2020-11-17 15:42:37 +01:00
}
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'
}
2020-12-22 02:41:37 +01:00
processResources {
filesNotMatching(["**/*.png", "**/models/**", "**/textures/**"]) {
expand projectVersion: project.version
2020-12-22 02:41:37 +01:00
}
}
2021-12-13 23:15:25 +01:00
java.sourceCompatibility = JavaVersion.VERSION_17
java.targetCompatibility = JavaVersion.VERSION_17
2020-11-17 16:22:15 +01:00
compileJava.options.encoding = 'UTF-8'
2020-11-21 13:02:35 +01:00
compileJava.dependsOn clean
2021-01-04 15:12:47 +01:00
build.dependsOn shadowJar
2021-09-30 16:21:35 +02:00
build.dependsOn check
2020-11-17 15:42:37 +01:00
}
tasks.withType(Jar) {
destinationDirectory = file("$rootDir/bin/")
}
2020-11-20 13:50:33 +01:00
clean.doLast {
file("${rootDir}/bin").deleteDir()
}
2020-12-22 02:41:37 +01:00
shadowJar {
archiveFileName = findProperty("plugin-name") + " v" + findProperty("version") + ".jar"
}
jar {
2021-03-06 19:59:02 +01:00
archiveFileName = findProperty("plugin-name") + " v" + findProperty("version") + ".jar"
2020-12-22 02:41:37 +01:00
}
group = 'com.willfp'
2020-11-17 15:42:37 +01:00
archivesBaseName = project.name
version = findProperty("version")
2020-11-17 15:42:37 +01:00
2020-12-22 02:41:37 +01:00
compileJava.options.encoding = 'UTF-8'
2020-11-17 15:42:37 +01:00
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
2022-02-18 16:08:35 +01:00
}
task buyThePlugins {
dependsOn subprojects.build
doLast {
println 'If you like the plugin, please consider buying it on Spigot or Polymart!'
println 'Spigot: https://www.spigotmc.org/resources/authors/auxilor.507394/'
println 'Polymart: https://polymart.org/user/auxilor.1107/'
println 'Buying gives you access to support and the plugin auto-updater, and it allows me to keep developing plugins.'
}
}
build.finalizedBy buyThePlugins