mirror of
https://github.com/ViaVersion/ViaProxy.git
synced 2024-11-02 08:50:26 +01:00
b8a116bcad
Bumps [mixinsdummy](https://github.com/Lenni0451/ClassTransform) from 1.8.0 to 1.8.2. - [Release notes](https://github.com/Lenni0451/ClassTransform/releases) - [Commits](https://github.com/Lenni0451/ClassTransform/commits) --- updated-dependencies: - dependency-name: net.lenni0451.classtransform:mixinsdummy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
147 lines
4.1 KiB
Groovy
147 lines
4.1 KiB
Groovy
plugins {
|
|
id "java"
|
|
id "maven-publish"
|
|
id "net.kyori.blossom" version "1.3.1"
|
|
}
|
|
|
|
sourceSets {
|
|
java17compat
|
|
}
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
|
[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"
|
|
|
|
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"
|
|
}
|
|
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"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly sourceSets.java17compat.output
|
|
|
|
include "com.viaversion:viaversion:4.5.2-SNAPSHOT"
|
|
include("com.viaversion:viabackwards-common:4.5.2-SNAPSHOT") {
|
|
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"
|
|
include "net.raphimc:ViaLegacy:2.2.1"
|
|
include "net.raphimc:ViaAprilFools:2.0.1"
|
|
include("net.raphimc:ViaProtocolHack:2.1.2") {
|
|
exclude group: "org.slf4j", module: "slf4j-api"
|
|
}
|
|
|
|
include "com.google.code.gson:gson:2.10.1"
|
|
include "com.formdev:flatlaf:3.0"
|
|
include "com.google.guava:guava:31.1-jre"
|
|
include "org.apache.commons:commons-lang3:3.12.0"
|
|
include "commons-io:commons-io:2.11.0"
|
|
include "net.sf.jopt-simple:jopt-simple:5.0.4"
|
|
include "org.apache.logging.log4j:log4j-core:2.19.0"
|
|
include "org.apache.logging.log4j:log4j-slf4j-impl:2.19.0"
|
|
include "com/mojang:authlib:3.16.29"
|
|
include "net.lenni0451.classtransform:mixinstranslator:1.8.0"
|
|
include "net.lenni0451.classtransform:mixinsdummy:1.8.2"
|
|
include "net.lenni0451.classtransform:additionalclassprovider:1.8.0"
|
|
include "net.lenni0451:Reflect:1.0.2"
|
|
include "net.lenni0451:LambdaEvents:2.0.3"
|
|
include "net.raphimc.netminecraft:all:2.2.3"
|
|
include("net.raphimc:MinecraftAuth:2.0.1") {
|
|
exclude group: "com.google.code.gson", module: "gson"
|
|
exclude group: "org.slf4j", module: "slf4j-api"
|
|
}
|
|
include("net.lenni0451.mcstructs:all:2.1.1") {
|
|
exclude group: "com.google.code.gson", module: "gson"
|
|
}
|
|
}
|
|
|
|
blossom {
|
|
replaceToken("\${version}", project.version, "src/main/java/net/raphimc/viaproxy/ViaProxy.java")
|
|
}
|
|
|
|
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",
|
|
"Multi-Release": "true"
|
|
)
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
}
|