mirror of
https://github.com/ViaVersion/VIAaaS.git
synced 2024-11-21 11:55:15 +01:00
all ci branches, update gradle, downgrade via
This commit is contained in:
parent
4152225fc1
commit
e63f7eb96d
6
.github/workflows/gradle.yml
vendored
6
.github/workflows/gradle.yml
vendored
@ -3,11 +3,7 @@
|
||||
|
||||
name: Java CI with Gradle
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -1,4 +1,7 @@
|
||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
plugins {
|
||||
`java-library`
|
||||
id("com.github.johnrengelman.shadow") version "6.1.0"
|
||||
id("com.github.ben-manes.versions") version "0.36.0"
|
||||
id("com.palantir.git-version") version "0.12.3"
|
||||
@ -13,9 +16,14 @@ application {
|
||||
}
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
toolchain {
|
||||
languageVersion.set(JavaLanguageVersion.of(11))
|
||||
}
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
val compileKotlin: KotlinCompile by tasks
|
||||
compileKotlin.kotlinOptions.jvmTarget = "11"
|
||||
|
||||
val gitVersion: groovy.lang.Closure<String> by extra
|
||||
|
||||
@ -36,9 +44,9 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("us.myles:viaversion:3.3.0-21w07a") { isTransitive = false }
|
||||
implementation("nl.matsv:viabackwards-all:3.3.0-21w07a") { isTransitive = false }
|
||||
implementation("de.gerrygames:viarewind-all:1.5.4-SNAPSHOT") { isTransitive = false }
|
||||
implementation("us.myles:viaversion:3.2.1") { isTransitive = false }
|
||||
implementation("nl.matsv:viabackwards-all:3.2.0") { isTransitive = false }
|
||||
implementation("de.gerrygames:viarewind-all:1.5.3") { isTransitive = false }
|
||||
implementation("io.netty:netty-all:4.1.58.Final")
|
||||
implementation("org.yaml:snakeyaml:1.26")
|
||||
implementation("com.google.guava:guava:30.0-jre")
|
||||
@ -70,8 +78,6 @@ val run: JavaExec by tasks
|
||||
run.standardInput = System.`in`
|
||||
|
||||
project.configurations.implementation.get().isCanBeResolved = true
|
||||
|
||||
|
||||
tasks {
|
||||
named<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar>("shadowJar") {
|
||||
configurations = listOf(project.configurations.implementation.get())
|
||||
@ -91,9 +97,6 @@ tasks.named<ProcessResources>("processResources") {
|
||||
}
|
||||
}
|
||||
|
||||
val compileKotlin: org.jetbrains.kotlin.gradle.tasks.KotlinCompile by tasks
|
||||
compileKotlin.kotlinOptions.jvmTarget = "11"
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
create<MavenPublication>("maven") {
|
||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
Loading…
Reference in New Issue
Block a user