PlaceholderAPI/build.gradle

132 lines
3.4 KiB
Groovy
Raw Normal View History

import org.apache.tools.ant.filters.ReplaceTokens
2020-07-14 18:56:49 +02:00
plugins {
2020-08-01 04:52:07 +02:00
id "java"
id "maven-publish"
2021-11-27 06:44:31 +01:00
id "org.cadixdev.licenser" version "0.6.1"
id "com.github.johnrengelman.shadow" version "7.1.0"
2020-07-14 18:56:49 +02:00
}
group "me.clip"
2022-07-26 23:22:18 +02:00
version "2.11.3-DEV-${System.getProperty("BUILD_NUMBER")}"
2020-07-14 18:56:49 +02:00
description "An awesome placeholder provider!"
2020-07-14 18:56:49 +02:00
repositories {
2021-07-09 06:24:36 +02:00
maven({ url = "https://oss.sonatype.org/content/repositories/snapshots/" })
2020-08-01 04:52:07 +02:00
mavenCentral()
2021-07-07 09:37:35 +02:00
mavenLocal()
Merge Development into master (#758) * Update development from master (#662) * Add contributing and expansion section * Start using new Issue template system * Create bug_report.yml * Rename feature_request.md to feature_request_old.md * Create feature_request.yml * fix unique name * Update feature_request_old.md * Add Checkboxes * Add checkboxes * disable default issue body * Delete bug_report_old.md * Delete feature_request_old.md * Rename bug_report_new.yml to bug_report.yml * Check if deleting this fixed the PR... * Use description in favour of about * improve feature_request.md * Update bug_report.yml * Assign "Type: Issue (Unconfirmed)" label * Use lists and not comma-separated string * Update feature_request.yml * Use id option for error and dump fields * Add field for logs * Remove deprecated issue_body type * Update feature_request.yml * Improve description of bug_report.yml * Initial 1.17 Changes * add render * Revert build.gradle dependencies change * Fixed duplicate files * Initial test on adventure * started moving to pure adventure * finished kyori impl * added 1.17 to nmsversion (what does this even do) * removed dev for release * added dev back Co-authored-by: PiggyPiglet <PiggyPiglet@users.noreply.github.com> Co-authored-by: darbyjack <admin@glaremasters.me> Co-authored-by: PiggyPiglet <noreply@piggypiglet.me> * Update dependencies of PlaceholderAPI * Add missing trailing / Co-authored-by: PiggyPiglet <PiggyPiglet@users.noreply.github.com> Co-authored-by: darbyjack <admin@glaremasters.me> Co-authored-by: PiggyPiglet <noreply@piggypiglet.me>
2021-12-03 04:52:28 +01:00
maven({ url = "https://repo.codemc.org/repository/maven-public/" })
2020-08-01 04:52:07 +02:00
maven({ url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" })
2020-07-14 18:56:49 +02:00
}
dependencies {
2022-06-27 05:54:07 +02:00
implementation "org.bstats:bstats-bukkit:3.0.0"
2023-03-17 00:22:58 +01:00
implementation "net.kyori:adventure-platform-bukkit:4.3.0"
2020-08-01 04:52:07 +02:00
2022-06-16 01:31:33 +02:00
compileOnly "org.spigotmc:spigot-api:1.19-R0.1-SNAPSHOT"
2022-06-27 05:54:07 +02:00
compileOnly "org.jetbrains:annotations:23.0.0"
2020-08-01 04:52:07 +02:00
Merge Development into master (#758) * Update development from master (#662) * Add contributing and expansion section * Start using new Issue template system * Create bug_report.yml * Rename feature_request.md to feature_request_old.md * Create feature_request.yml * fix unique name * Update feature_request_old.md * Add Checkboxes * Add checkboxes * disable default issue body * Delete bug_report_old.md * Delete feature_request_old.md * Rename bug_report_new.yml to bug_report.yml * Check if deleting this fixed the PR... * Use description in favour of about * improve feature_request.md * Update bug_report.yml * Assign "Type: Issue (Unconfirmed)" label * Use lists and not comma-separated string * Update feature_request.yml * Use id option for error and dump fields * Add field for logs * Remove deprecated issue_body type * Update feature_request.yml * Improve description of bug_report.yml * Initial 1.17 Changes * add render * Revert build.gradle dependencies change * Fixed duplicate files * Initial test on adventure * started moving to pure adventure * finished kyori impl * added 1.17 to nmsversion (what does this even do) * removed dev for release * added dev back Co-authored-by: PiggyPiglet <PiggyPiglet@users.noreply.github.com> Co-authored-by: darbyjack <admin@glaremasters.me> Co-authored-by: PiggyPiglet <noreply@piggypiglet.me> * Update dependencies of PlaceholderAPI * Add missing trailing / Co-authored-by: PiggyPiglet <PiggyPiglet@users.noreply.github.com> Co-authored-by: darbyjack <admin@glaremasters.me> Co-authored-by: PiggyPiglet <noreply@piggypiglet.me>
2021-12-03 04:52:28 +01:00
testImplementation "org.openjdk.jmh:jmh-core:1.32"
testImplementation "org.openjdk.jmh:jmh-generator-annprocess:1.32"
2020-08-01 04:52:07 +02:00
testImplementation "org.junit.jupiter:junit-jupiter-engine:5.8.2"
Merge Development into master (#758) * Update development from master (#662) * Add contributing and expansion section * Start using new Issue template system * Create bug_report.yml * Rename feature_request.md to feature_request_old.md * Create feature_request.yml * fix unique name * Update feature_request_old.md * Add Checkboxes * Add checkboxes * disable default issue body * Delete bug_report_old.md * Delete feature_request_old.md * Rename bug_report_new.yml to bug_report.yml * Check if deleting this fixed the PR... * Use description in favour of about * improve feature_request.md * Update bug_report.yml * Assign "Type: Issue (Unconfirmed)" label * Use lists and not comma-separated string * Update feature_request.yml * Use id option for error and dump fields * Add field for logs * Remove deprecated issue_body type * Update feature_request.yml * Improve description of bug_report.yml * Initial 1.17 Changes * add render * Revert build.gradle dependencies change * Fixed duplicate files * Initial test on adventure * started moving to pure adventure * finished kyori impl * added 1.17 to nmsversion (what does this even do) * removed dev for release * added dev back Co-authored-by: PiggyPiglet <PiggyPiglet@users.noreply.github.com> Co-authored-by: darbyjack <admin@glaremasters.me> Co-authored-by: PiggyPiglet <noreply@piggypiglet.me> * Update dependencies of PlaceholderAPI * Add missing trailing / Co-authored-by: PiggyPiglet <PiggyPiglet@users.noreply.github.com> Co-authored-by: darbyjack <admin@glaremasters.me> Co-authored-by: PiggyPiglet <noreply@piggypiglet.me>
2021-12-03 04:52:28 +01:00
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.1"
2020-07-14 18:56:49 +02:00
}
processResources {
2021-07-01 16:24:01 +02:00
filter ReplaceTokens, tokens: [name: rootProject.name, version: project.version.toString(), description: project.description]
2020-07-14 18:56:49 +02:00
}
java {
2020-08-01 04:52:07 +02:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withJavadocJar()
withSourcesJar()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
2020-07-14 18:56:49 +02:00
tasks.withType(Javadoc) {
failOnError false
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
options.addStringOption('charSet', 'UTF-8')
2020-12-14 01:52:46 +01:00
}
2020-07-14 18:56:49 +02:00
shadowJar {
2020-08-01 04:52:07 +02:00
archiveClassifier.set("")
2020-07-31 16:46:27 +02:00
2020-08-01 04:52:07 +02:00
relocate "org.bstats", "me.clip.placeholderapi.metrics"
2021-07-06 18:59:17 +02:00
relocate "net.kyori", "me.clip.placeholderapi.libs.kyori"
}
license {
2020-08-01 04:52:07 +02:00
include '**/*.java'
2020-08-01 04:52:07 +02:00
matching('**/*.java') {
2020-08-01 05:04:06 +02:00
header = file('config/headers/main.txt')
2020-08-01 04:52:07 +02:00
}
2020-08-01 04:52:07 +02:00
ext {
year = 2021
2020-08-01 04:52:07 +02:00
}
}
test {
2020-08-01 04:52:07 +02:00
useJUnitPlatform()
}
2021-06-11 08:33:29 +02:00
configurations {
testImplementation {
extendsFrom(compileOnly)
}
2020-07-14 18:56:49 +02:00
}
publishing {
2020-08-01 04:52:07 +02:00
repositories {
maven {
if (version.contains("-DEV")) {
2020-08-01 04:52:07 +02:00
url = uri("https://repo.extendedclip.com/content/repositories/dev/")
} else {
url = uri("https://repo.extendedclip.com/content/repositories/placeholderapi/")
}
credentials {
username = System.getenv("JENKINS_USER")
password = System.getenv("JENKINS_PASS")
}
}
}
publications {
mavenJava(MavenPublication) {
artifactId = "placeholderapi"
from components.java
pom.withXml {
2020-08-06 20:05:33 +02:00
// some are having issues with bstats so we might need to add that to the pom as well
2020-08-01 04:52:07 +02:00
asNode().appendNode("packaging", "jar")
asNode().remove(asNode().get("dependencies"))
2020-08-03 21:23:48 +02:00
def dependenciesNode = asNode().appendNode("dependencies")
2020-08-03 21:38:53 +02:00
// jetbrains annotations
def jetbrainsAnnotations = dependenciesNode.appendNode("dependency")
jetbrainsAnnotations.appendNode("groupId", "org.jetbrains")
jetbrainsAnnotations.appendNode("artifactId", "annotations")
jetbrainsAnnotations.appendNode("version", "19.0.0")
2020-08-01 04:52:07 +02:00
}
}
}
}
2021-01-03 16:35:37 +01:00
publish.dependsOn clean, test, jar