mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-12 04:23:54 +00:00
Cherry-pick to fix EntryMaker issue
This commit is contained in:
committed by
IronApollo
parent
735a37ffd0
commit
ff47e6f717
@ -25,7 +25,16 @@ sponge {
|
||||
}
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
addJarManifest(includeClasspath = true)
|
||||
=======
|
||||
tasks.named<Jar>("jar") {
|
||||
manifest {
|
||||
attributes("Class-Path" to CLASSPATH,
|
||||
"WorldEdit-Version" to project.version)
|
||||
}
|
||||
}
|
||||
>>>>>>> 18a55bc14... Add new experimental snapshot API (#524)
|
||||
|
||||
tasks.named<ShadowJar>("shadowJar") {
|
||||
dependencies {
|
||||
|
@ -122,9 +122,8 @@ public class ConfigurateConfiguration extends LocalConfiguration {
|
||||
showHelpInfo = node.getNode("show-help-on-first-use").getBoolean(true);
|
||||
|
||||
String snapshotsDir = node.getNode("snapshots", "directory").getString("");
|
||||
if (!snapshotsDir.isEmpty()) {
|
||||
snapshotRepo = new SnapshotRepository(snapshotsDir);
|
||||
}
|
||||
boolean experimentalSnapshots = node.getNode("snapshots", "experimental").getBoolean(false);
|
||||
initializeSnapshotConfiguration(snapshotsDir, experimentalSnapshots);
|
||||
|
||||
String type = node.getNode("shell-save-type").getString("").trim();
|
||||
shellSaveType = type.equals("") ? null : type;
|
||||
|
Reference in New Issue
Block a user