ViaProxy/build.gradle

180 lines
5.4 KiB
Groovy
Raw Normal View History

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
}
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"
}
2023-04-02 21:25:27 +02:00
maven {
name = "Lenni0451 Snapshots"
url "https://maven.lenni0451.net/snapshots"
}
maven {
name = "OpenCollab Releases"
url = "https://repo.opencollab.dev/maven-releases/"
}
maven {
name = "OpenCollab Snapshots"
url = "https://repo.opencollab.dev/maven-snapshots/"
}
2023-01-04 20:58:09 +01:00
maven {
name = "ViaVersion"
url "https://repo.viaversion.com"
}
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-05-25 21:28:26 +02:00
include "com.viaversion:viaversion:4.7.0-1.20-pre6-SNAPSHOT"
2023-05-28 11:24:54 +02:00
include("com.viaversion:viabackwards-common:4.7.0-1.20-pre5-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"
}
2023-03-19 00:26:40 +01:00
include "com.viaversion:viarewind-core:2.0.4-SNAPSHOT"
2023-04-23 23:00:44 +02:00
include "net.raphimc:ViaLegacy:2.2.16"
2023-03-05 13:00:40 +01:00
include "net.raphimc:ViaAprilFools:2.0.6"
2023-04-02 21:25:27 +02:00
include("net.raphimc:ViaBedrock:0.0.1-SNAPSHOT") {
exclude group: "io.netty", module: "netty-codec-http"
exclude group: "com.vdurmont", module: "semver4j"
exclude group: "io.jsonwebtoken", module: "jjwt-impl"
exclude group: "io.jsonwebtoken", module: "jjwt-gson"
}
2023-04-26 20:45:09 +02:00
include("net.raphimc:ViaProtocolHack:2.2.4") {
2023-01-04 20:58:09 +01:00
exclude group: "org.slf4j", module: "slf4j-api"
2023-04-22 20:31:12 +02:00
exclude group: "org.yaml", module: "snakeyaml"
2023-01-04 20:58:09 +01:00
}
2023-04-22 20:31:12 +02:00
include "org.yaml:snakeyaml:1.33" // Geyser does not run with 2.0
2023-01-04 20:58:09 +01:00
include "com.google.code.gson:gson:2.10.1"
include "com.formdev:flatlaf:3.1.1"
2023-01-04 20:58:09 +01:00
include "com.google.guava:guava:31.1-jre"
include "org.apache.commons:commons-lang3:3.12.0"
include "commons-io:commons-io:2.12.0"
2023-01-04 20:58:09 +01:00
include "net.sf.jopt-simple:jopt-simple:5.0.4"
include "org.apache.logging.log4j:log4j-core:2.20.0"
include "org.apache.logging.log4j:log4j-slf4j-impl:2.20.0"
include "com/mojang:authlib:3.16.29"
2023-05-17 18:08:31 +02:00
include "net.lenni0451.classtransform:mixinstranslator:1.9.1"
include "net.lenni0451.classtransform:mixinsdummy:1.9.1"
include "net.lenni0451.classtransform:additionalclassprovider:1.9.1"
include "net.lenni0451:Reflect:1.1.0"
2023-01-04 20:58:09 +01:00
include "net.lenni0451:LambdaEvents:2.0.3"
2023-04-22 18:42:14 +02:00
include "net.raphimc.netminecraft:all:2.3.3"
2023-05-20 16:39:28 +02:00
include("net.raphimc:MinecraftAuth:2.1.3") {
2023-01-05 22:42:15 +01:00
exclude group: "com.google.code.gson", module: "gson"
exclude group: "org.slf4j", module: "slf4j-api"
}
2023-05-17 18:08:31 +02:00
include("net.raphimc.javadowngrader:core:1.0.0-SNAPSHOT") {
exclude group: "org.slf4j", module: "slf4j-api"
exclude group: "org.ow2.asm", module: "asm-commons"
}
2023-01-30 18:31:44 +01:00
include "com.vdurmont:semver4j:3.1.0"
2023-04-02 21:25:27 +02:00
include("org.cloudburstmc.netty:netty-transport-raknet:1.0.0.CR1-SNAPSHOT") {
exclude group: "io.netty", module: "netty-common"
exclude group: "io.netty", module: "netty-buffer"
exclude group: "io.netty", module: "netty-codec"
exclude group: "io.netty", module: "netty-transport"
}
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 {
2023-05-28 18:00:36 +02:00
name = "ViaVersion"
url = "https://repo.viaversion.com/"
2023-01-04 20:58:09 +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
}
}
}