update piston depend

Dieser Commit ist enthalten in:
Jesse Boyd 2019-07-23 06:57:34 +10:00
Ursprung 4d8cf04be1
Commit e53fc8a7f6
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 59F1DE6293AF6E1F
2 geänderte Dateien mit 13 neuen und 7 gelöschten Zeilen

Datei anzeigen

@ -88,7 +88,7 @@ subprojects {
ivy { ivy {
url 'https://ci.athion.net/job' url 'https://ci.athion.net/job'
layout 'pattern', { layout 'pattern', {
artifact '/[organisation]/[module]/artifact/[revision].[ext]' artifact '/[organisation]/[revision]/artifact/[module].[ext]'
} }
} }
} }

Datei anzeigen

@ -91,7 +91,7 @@ configure(subprojects + project("core:ap")) {
def textExtrasVersion = "3.0.2" def textExtrasVersion = "3.0.2"
project("core") { project("core") {
def textVersion = "3.0.2" def textVersion = "3.0.2"
def pistonVersion = '0.4.3-SNAPSHOT' def pistonVersion = '0.4.4-SNAPSHOT'
dependencies { dependencies {
shade "net.kyori:text-api:$textVersion" shade "net.kyori:text-api:$textVersion"
@ -104,15 +104,21 @@ project("core") {
} }
shade 'com.thoughtworks.paranamer:paranamer:2.6' shade 'com.thoughtworks.paranamer:paranamer:2.6'
shade 'com.sk89q.lib:jlibnoise:1.0.0' shade 'com.sk89q.lib:jlibnoise:1.0.0'
shade "FAWE-Piston:lastSuccessfulBuild:core/build/libs/core-$pistonVersion@jar" shade "FAWE-Piston:core/build/libs/core-$pistonVersion:lastSuccessfulBuild@jar"
shade "org.enginehub.piston.core-ap:runtime:$pistonVersion" shade "FAWE-Piston:core-ap/runtime/build/libs/runtime-$pistonVersion:lastSuccessfulBuild@jar"
shade "org.enginehub.piston:default-impl:$pistonVersion" shade "FAWE-Piston:default-impl/build/libs/default-impl-$pistonVersion:lastSuccessfulBuild@jar"
} }
project("ap") { project("ap") {
dependencies { dependencies {
shade "org.enginehub.piston.core-ap:annotations:$pistonVersion" // def avVersion = "1.6.5"
shade "org.enginehub.piston.core-ap:processor:$pistonVersion" // shade "com.google.auto.value:auto-value-annotations:$avVersion"
shade "FAWE-Piston:core/build/libs/core-$pistonVersion:lastSuccessfulBuild@jar"
shade "FAWE-Piston:core-ap/annotations/build/libs/annotations-$pistonVersion:lastSuccessfulBuild@jar"
shade "FAWE-Piston:core-ap/processor/build/libs/processor-$pistonVersion:lastSuccessfulBuild@jar"
shade "org.enginehub.piston.core-ap:annotations:0.4.3"
shade "org.enginehub.piston.core-ap:processor:0.4.3"
} }
} }
} }