3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-10-02 00:10:06 +02:00

Fix license bundling

Dieser Commit ist enthalten in:
KennyTV 2021-03-21 20:07:32 +01:00
Ursprung 81b9f1b4cd
Commit bdeb5acae9
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 6BE3B555EBC5982B
3 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -51,7 +51,7 @@ After cloning this repository, build the project with Gradle by running `/gradle
License:
--------
MIT License, see LICENSE for more details.
MIT License, see LICENSE.txt for more details.
Special thanks to all our [Contributors](https://github.com/ViaVersion/ViaVersion/graphs/contributors)

Datei anzeigen

@ -24,6 +24,9 @@ fun Project.configureShadowJar() {
if (name == "jar") {
archiveClassifier.set("unshaded")
}
from(project.parent!!.file("LICENSE.txt")) {
into("")
}
}
}
}