2023-01-04 20:58:09 +01:00
|
|
|
plugins {
|
|
|
|
id "java"
|
|
|
|
id "maven-publish"
|
2023-01-04 21:54:49 +01:00
|
|
|
id "net.kyori.blossom" version "1.3.1"
|
2023-01-04 20:58:09 +01:00
|
|
|
}
|
|
|
|
|
2023-01-12 18:48:45 +01:00
|
|
|
sourceSets {
|
|
|
|
java17compat
|
|
|
|
}
|
|
|
|
|
2023-01-11 20:02:03 +01:00
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
2023-01-12 18:48:45 +01:00
|
|
|
[compileJava, compileTestJava, compileJava17compatJava].each {
|
|
|
|
it.options.encoding = "UTF-8"
|
|
|
|
it.sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
it.targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
javadoc.options.encoding = "UTF-8"
|
2023-01-04 20:58:09 +01:00
|
|
|
|
|
|
|
group = project.maven_group
|
|
|
|
archivesBaseName = project.maven_name
|
|
|
|
version = project.maven_version
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
include
|
|
|
|
|
|
|
|
implementation.extendsFrom include
|
|
|
|
api.extendsFrom include
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
name = "Jitpack"
|
|
|
|
url = "https://jitpack.io"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "Lenni0451"
|
|
|
|
url "https://maven.lenni0451.net/releases"
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "ViaVersion"
|
|
|
|
url "https://repo.viaversion.com"
|
|
|
|
}
|
2023-01-11 20:02:03 +01:00
|
|
|
ivy { // This workaround is needed as gradle does not allow to include Java 17 dependencies in a Java 8 project
|
|
|
|
name = "Mojang"
|
|
|
|
url "https://libraries.minecraft.net"
|
|
|
|
patternLayout {
|
|
|
|
artifact MAVEN_ARTIFACT_PATTERN
|
|
|
|
}
|
|
|
|
metadataSources {
|
|
|
|
it.artifact()
|
|
|
|
}
|
|
|
|
content {
|
|
|
|
includeGroup "com/mojang"
|
|
|
|
}
|
|
|
|
}
|
2023-01-04 20:58:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-01-12 18:48:45 +01:00
|
|
|
compileOnly sourceSets.java17compat.output
|
|
|
|
|
2023-03-03 16:31:47 +01:00
|
|
|
include "com.viaversion:viaversion:4.6.0-1.19.4-pre3-SNAPSHOT"
|
|
|
|
include("com.viaversion:viabackwards-common:4.6.0-1.19.4-pre3-SNAPSHOT") {
|
2023-01-04 20:58:09 +01:00
|
|
|
exclude group: "com.viaversion", module: "viaversion"
|
|
|
|
exclude group: "io.netty", module: "netty-all"
|
|
|
|
exclude group: "com.google.guava", module: "guava"
|
|
|
|
}
|
|
|
|
include "com.viaversion:viarewind-core:2.0.3-SNAPSHOT"
|
2023-02-24 14:24:30 +01:00
|
|
|
include "net.raphimc:ViaLegacy:2.2.8"
|
2023-03-05 13:00:40 +01:00
|
|
|
include "net.raphimc:ViaAprilFools:2.0.6"
|
2023-03-04 21:52:58 +01:00
|
|
|
include("net.raphimc:ViaProtocolHack:2.1.9") {
|
2023-01-04 20:58:09 +01:00
|
|
|
exclude group: "org.slf4j", module: "slf4j-api"
|
|
|
|
}
|
|
|
|
|
2023-01-09 05:26:55 +01:00
|
|
|
include "com.google.code.gson:gson:2.10.1"
|
2023-01-04 20:58:09 +01:00
|
|
|
include "com.formdev:flatlaf:3.0"
|
|
|
|
include "com.google.guava:guava:31.1-jre"
|
2023-01-11 20:02:03 +01:00
|
|
|
include "org.apache.commons:commons-lang3:3.12.0"
|
|
|
|
include "commons-io:commons-io:2.11.0"
|
2023-01-04 20:58:09 +01:00
|
|
|
include "net.sf.jopt-simple:jopt-simple:5.0.4"
|
2023-02-24 06:05:30 +01:00
|
|
|
include "org.apache.logging.log4j:log4j-core:2.20.0"
|
2023-02-24 08:39:34 +01:00
|
|
|
include "org.apache.logging.log4j:log4j-slf4j-impl:2.20.0"
|
2023-01-11 20:02:03 +01:00
|
|
|
include "com/mojang:authlib:3.16.29"
|
2023-01-20 05:13:51 +01:00
|
|
|
include "net.lenni0451.classtransform:mixinstranslator:1.8.3"
|
2023-01-20 17:45:23 +01:00
|
|
|
include "net.lenni0451.classtransform:mixinsdummy:1.8.3"
|
2023-01-20 05:13:58 +01:00
|
|
|
include "net.lenni0451.classtransform:additionalclassprovider:1.8.3"
|
2023-01-04 20:58:09 +01:00
|
|
|
include "net.lenni0451:Reflect:1.0.2"
|
|
|
|
include "net.lenni0451:LambdaEvents:2.0.3"
|
2023-01-29 22:23:14 +01:00
|
|
|
include "net.raphimc.netminecraft:all:2.3.1"
|
2023-01-05 22:42:15 +01:00
|
|
|
include("net.raphimc:MinecraftAuth:2.0.1") {
|
|
|
|
exclude group: "com.google.code.gson", module: "gson"
|
|
|
|
exclude group: "org.slf4j", module: "slf4j-api"
|
|
|
|
}
|
2023-02-06 05:35:00 +01:00
|
|
|
include("net.lenni0451.mcstructs:all:2.2.0") {
|
2023-01-14 20:28:41 +01:00
|
|
|
exclude group: "com.google.code.gson", module: "gson"
|
|
|
|
}
|
2023-01-30 18:31:44 +01:00
|
|
|
include "com.vdurmont:semver4j:3.1.0"
|
2023-01-04 20:58:09 +01:00
|
|
|
}
|
|
|
|
|
2023-01-04 21:54:49 +01:00
|
|
|
blossom {
|
|
|
|
replaceToken("\${version}", project.version, "src/main/java/net/raphimc/viaproxy/ViaProxy.java")
|
|
|
|
}
|
|
|
|
|
2023-02-23 20:35:02 +01:00
|
|
|
java {
|
|
|
|
withSourcesJar()
|
|
|
|
}
|
|
|
|
|
2023-01-04 20:58:09 +01:00
|
|
|
jar {
|
|
|
|
dependsOn configurations.include
|
|
|
|
from {
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
configurations.include.collect {
|
|
|
|
zipTree(it)
|
|
|
|
}
|
|
|
|
} {
|
|
|
|
exclude "META-INF/*.RSA", "META-INF/*.SF", "META-INF/*.DSA"
|
|
|
|
}
|
|
|
|
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
"Main-Class": "net.raphimc.viaproxy.ViaProxy",
|
2023-01-19 18:57:38 +01:00
|
|
|
"Multi-Release": "true",
|
|
|
|
"Launcher-Agent-Class": "net.raphimc.viaproxy.ViaProxy"
|
2023-01-04 20:58:09 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
from("LICENSE") {
|
|
|
|
rename { "${it}_${project.archivesBaseName}" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
name = "reposilite"
|
|
|
|
url = "https://maven.lenni0451.net/releases"
|
|
|
|
credentials(PasswordCredentials)
|
|
|
|
authentication {
|
|
|
|
basic(BasicAuthentication)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
publications {
|
|
|
|
maven(MavenPublication) {
|
|
|
|
groupId = project.maven_group
|
|
|
|
artifactId = project.maven_name
|
|
|
|
version = project.maven_version
|
|
|
|
|
|
|
|
from components.java
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|