2023-01-03 23:54:35 +01:00
|
|
|
plugins {
|
|
|
|
id "java-library"
|
|
|
|
id "maven-publish"
|
2023-09-05 21:20:50 +02:00
|
|
|
id "net.raphimc.class-token-replacer" version "1.0.0"
|
2023-01-03 23:54:35 +01:00
|
|
|
}
|
|
|
|
|
2023-09-03 00:47:32 +02:00
|
|
|
base {
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
compileJava.options.encoding = compileTestJava.options.encoding = javadoc.options.encoding = "UTF-8"
|
2023-01-03 23:54:35 +01:00
|
|
|
|
2023-09-03 00:47:32 +02:00
|
|
|
group = project.maven_group ?: rootProject.maven_group
|
|
|
|
archivesName = project.maven_name ?: rootProject.maven_name
|
|
|
|
version = project.maven_version ?: rootProject.maven_version
|
|
|
|
}
|
2023-01-03 23:54:35 +01:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
name = "ViaVersion"
|
|
|
|
url "https://repo.viaversion.com"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-10-07 21:23:08 +02:00
|
|
|
compileOnly "com.viaversion:viaversion:4.9.0-23w40a-SNAPSHOT"
|
2023-09-08 12:55:59 +02:00
|
|
|
compileOnly "org.yaml:snakeyaml:2.2"
|
|
|
|
compileOnly "com.google.guava:guava:32.1.2-jre"
|
2023-09-29 11:19:08 +02:00
|
|
|
compileOnly "io.netty:netty-handler:4.1.99.Final"
|
2023-02-08 22:40:36 +01:00
|
|
|
|
2023-08-14 11:36:58 +02:00
|
|
|
api "net.lenni0451.mcstructs:text:2.3.1"
|
2023-01-03 23:54:35 +01:00
|
|
|
}
|
|
|
|
|
2023-09-05 21:20:50 +02:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
classTokenReplacer {
|
|
|
|
property("\${version}", project.version)
|
|
|
|
property("\${impl_version}", "git-${project.name}-${project.version}:${project.latestCommitHash()}")
|
|
|
|
}
|
|
|
|
}
|
2023-01-04 03:39:05 +01:00
|
|
|
}
|
|
|
|
|
2023-01-03 23:54:35 +01:00
|
|
|
java {
|
|
|
|
withSourcesJar()
|
|
|
|
withJavadocJar()
|
|
|
|
}
|
|
|
|
|
2023-01-04 03:39:05 +01:00
|
|
|
jar {
|
|
|
|
from("LICENSE") {
|
2023-09-03 00:47:32 +02:00
|
|
|
rename { "${it}_${project.name ?: rootProject.name}" }
|
2023-01-04 03:39:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-03 23:54:35 +01:00
|
|
|
publishing {
|
|
|
|
repositories {
|
|
|
|
maven {
|
2023-05-28 18:53:41 +02:00
|
|
|
name = "Via"
|
|
|
|
url = "https://repo.viaversion.com/"
|
2023-06-30 23:51:40 +02:00
|
|
|
|
2023-01-03 23:54:35 +01:00
|
|
|
credentials(PasswordCredentials)
|
|
|
|
authentication {
|
|
|
|
basic(BasicAuthentication)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
publications {
|
|
|
|
maven(MavenPublication) {
|
|
|
|
groupId = project.maven_group
|
|
|
|
artifactId = project.maven_name
|
|
|
|
version = project.maven_version
|
|
|
|
|
|
|
|
from components.java
|
2023-06-30 23:51:40 +02:00
|
|
|
|
|
|
|
pom {
|
|
|
|
name = "ViaLegacy"
|
|
|
|
description = "ViaVersion addon to add support for EVERY Minecraft server version (Classic, Alpha, Beta, Release)"
|
|
|
|
url = "https://github.com/ViaVersion/ViaLegacy"
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name = "GPL-3.0 License"
|
|
|
|
url = "https://github.com/ViaVersion/ViaLegacy/blob/main/LICENSE"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
developers {
|
|
|
|
developer {
|
|
|
|
id = "RK_01"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
scm {
|
|
|
|
connection = "scm:git:git://github.com/ViaVersion/ViaLegacy.git"
|
|
|
|
developerConnection = "scm:git:ssh://github.com/ViaVersion/ViaLegacy.git"
|
|
|
|
url = "https://github.com/ViaVersion/ViaLegacy.git"
|
|
|
|
}
|
|
|
|
}
|
2023-01-03 23:54:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-15 01:49:41 +02:00
|
|
|
|
|
|
|
String latestCommitHash() {
|
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
|
|
|
commandLine "git", "rev-parse", "--short", "HEAD"
|
|
|
|
standardOutput = stdout
|
|
|
|
}
|
|
|
|
return stdout.toString().trim()
|
|
|
|
}
|