-
Notifications
You must be signed in to change notification settings - Fork 0
/
BuildTools.log.txt
1236 lines (1182 loc) · 58 KB
/
BuildTools.log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
git version 2.17.1
BuildTools
Attempting to build version: '1.13' use --rev <version> to override
Found version
{
"name": "1697",
"description": "Jenkins build 1697",
"refs": {
"BuildData": "351106b6336fc52f6acf94aabd34ac54fc772432",
"Bukkit": "47e3d2954d0dd279c93524baec241b76acaef7c7",
"CraftBukkit": "d5b95a2832432cebec3d276300e624e37eb4bb8e",
"Spigot": "f68f5a82539faf7fb36f64bd72731e35d3e57cc3"
},
"toolsVersion": 75
}
Pulling updates for /root/minecraft/BuildData/.git
Successfully fetched updates!
Checked out: 351106b6336fc52f6acf94aabd34ac54fc772432
Pulling updates for /root/minecraft/Bukkit/.git
Successfully fetched updates!
Checked out: 47e3d2954d0dd279c93524baec241b76acaef7c7
Pulling updates for /root/minecraft/CraftBukkit/.git
Successfully fetched updates!
Checked out: d5b95a2832432cebec3d276300e624e37eb4bb8e
Pulling updates for /root/minecraft/Spigot/.git
Successfully fetched updates!
Checked out: f68f5a82539faf7fb36f64bd72731e35d3e57cc3
Attempting to build Minecraft with details: VersionInfo(minecraftVersion=1.13, accessTransforms=bukkit-1.13.at, classMappings=bukkit-1.13-cl.csrg, memberMappings=bukkit-1.13-members.csrg, packageMappings=package.srg, minecraftHash=200bfa59cc85e9a212adfa6694f45c1c, decompileCommand=java -jar BuildData/bin/fernflower.jar -dgs=1 -hdc=0 -asc=1 -udv=0 {0} {1}, serverUrl=https://launcher.mojang.com/mc/game/1.13/server/d0caafb8438ebd206f99930cfaecfa6c9a13dca0/server.jar)
Found good Minecraft hash (200bfa59cc85e9a212adfa6694f45c1c)
Found good Minecraft hash (200bfa59cc85e9a212adfa6694f45c1c)
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Stub Project (No POM) 1
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-install-plugin:2.4:install-file (default-cli) @ standalone-pom ---
[INFO] Installing /root/minecraft/work/mapped.28efc98f.jar to /root/.m2/repository/org/spigotmc/minecraft-server/1.13-SNAPSHOT/minecraft-server-1.13-SNAPSHOT.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.493 s
[INFO] Finished at: 2018-07-27T16:28:54-07:00
[INFO] Final Memory: 6M/24M
[INFO] ------------------------------------------------------------------------
Applying CraftBukkit Patches
Backing up NMS dir
Patching with EntityTypes.patch
Patching with BlockIce.patch
Patching with TickListServer.patch
Patching with StatisticManager.patch
Patching with BlockVine.patch
Patching with EntityHorseAbstract.patch
Patching with BlockCocoa.patch
Patching with PlayerChunkMap.patch
Patching with RecipeFireworksFade.patch
Patching with EnchantmentThorns.patch
Patching with WorldBorder.patch
Patching with DamageSource.patch
Patching with BlockTNT.patch
Patching with EntityGhast.patch
Patching with BlockDiodeAbstract.patch
Patching with ItemArmor.patch
Patching with ChunkProviderServer.patch
Patching with PlayerInventory.patch
Patching with DataConverterMap.patch
Patching with TileEntityJukeBox.patch
Patching with ContainerHopper.patch
Patching with BlockSapling.patch
Patching with ContainerWorkbench.patch
Patching with EntitySpider.patch
Patching with ScoreboardServer.patch
Patching with EntityEvokerFangs.patch
Patching with EntityOcelot.patch
Patching with ItemFlintAndSteel.patch
Patching with EntityPhantom.patch
Patching with TileEntityChest.patch
Patching with WorldProviderHell.patch
Patching with EntityVillager.patch
Patching with EntityFallingBlock.patch
Patching with BlockDropper.patch
Patching with EntityProjectile.patch
Patching with EntityEnderPearl.patch
Patching with RegionLimitedWorldAccess.patch
Patching with TileEntity.patch
Patching with InventoryCraftResult.patch
Patching with TileEntityContainer.patch
Patching with EntityLeash.patch
Patching with EntityTracker.patch
Patching with Advancement.patch
Patching with EntityFireball.patch
Patching with BlockStem.patch
Patching with HandshakeListener.patch
Patching with EntityDolphin.patch
Patching with EntityPig.patch
Patching with BlockEnderPortal.patch
Patching with ItemFireball.patch
Patching with BlockShulkerBox.patch
Patching with Block.patch
Patching with BlockMobSpawner.patch
Patching with PathfinderGoalVillagerFarm.patch
Patching with WorldGenVillagePieces.patch
Patching with RecipeMapClone.patch
Patching with RecipeFireworksStar.patch
Patching with EntityEgg.patch
Patching with ContainerDispenser.patch
Patching with PathfinderGoalTargetNearestPlayer.patch
Patching with ContainerMerchant.patch
Patching with PlayerInteractManager.patch
Patching with NetworkManager.patch
Patching with WorldGenWitchHut.patch
Patching with EntityChicken.patch
Patching with Chunk.patch
Patching with BlockCommand.patch
Patching with EntityFireworks.patch
Patching with ChunkProviderGenerate.patch
Patching with CommandDebug.patch
Patching with PlayerChunk.patch
Patching with WorldGenMegaTreeProvider.patch
Patching with BlockFluids.patch
Patching with EntityArrow.patch
Patching with CommandListenerWrapper.patch
Patching with BlockCactus.patch
Patching with EntityMushroomCow.patch
Patching with DispenserRegistry.patch
Patching with PathfinderGoalHorseTrap.patch
Patching with EntityPotion.patch
Patching with BlockPlant.patch
Patching with PathfinderGoalNearestAttackableTargetInsentient.patch
Patching with BlockOre.patch
Patching with EntityArmorStand.patch
Patching with DedicatedServer.patch
Patching with NameReferencingFileConverter.patch
Patching with ItemMilkBucket.patch
Patching with Village.patch
Patching with BlockPressurePlateAbstract.patch
Patching with EntityLargeFireball.patch
Patching with ShapedRecipes.patch
Patching with MethodProfiler.patch
Patching with EntityWolf.patch
Patching with EntityLlamaSpit.patch
Patching with BlockCrops.patch
Patching with PacketStatusListener.patch
Patching with MinecraftServer.patch
Patching with SecondaryWorldServer.patch
Patching with EntityAgeable.patch
Patching with BlockPressurePlateWeighted.patch
Patching with BlockRedstoneTorch.patch
Patching with RecipeBannerDuplicate.patch
Patching with IWorldWriter.patch
Patching with Entity.patch
Patching with DispenseBehaviorProjectile.patch
Patching with ItemBlock.patch
Patching with BlockTallPlant.patch
Patching with CustomFunction.patch
Patching with InventoryHorseChest.patch
Patching with BlockNetherWart.patch
Patching with FoodMetaData.patch
Patching with EntitySkeletonWither.patch
Patching with ICommandListener.patch
Patching with RecipeBannerAdd.patch
Patching with DispenseBehaviorItem.patch
Patching with LoginListener.patch
Patching with CommandEffect.patch
Patching with RecipeTippedArrow.patch
Patching with EntityPufferFish.patch
Patching with RecipeBookClone.patch
Patching with DragonControllerManager.patch
Patching with EntityMinecartContainer.patch
Patching with ChunkTaskScheduler.patch
Patching with ItemSkullPlayer.patch
Patching with ChunkSection.patch
Patching with EnchantmentWeaponDamage.patch
Patching with BlockDoor.patch
Patching with RemoteControlCommandListener.patch
Patching with EntityShulker.patch
Patching with CommandTeleport.patch
Patching with UserCache.patch
Patching with BlockRedstoneLamp.patch
Patching with EntityMinecartCommandBlock.patch
Patching with FluidTypeFlowing.patch
Patching with EntityZombieVillager.patch
Patching with BlockSnow.patch
Patching with PathfinderGoalBreakDoor.patch
Patching with EntityEnderDragon.patch
Patching with BlockFire.patch
Patching with RecipeShulkerBox.patch
Patching with TileEntitySkull.patch
Patching with TileEntityDispenser.patch
Patching with InventoryCrafting.patch
Patching with WorldServer.patch
Patching with PathfinderGoalTempt.patch
Patching with InventorySubcontainer.patch
Patching with BlockTrapdoor.patch
Patching with BlockTripwire.patch
Patching with BlockLever.patch
Patching with EntityAnimal.patch
Patching with PathfinderGoalSit.patch
Patching with InventoryMerchant.patch
Patching with RecipiesShield.patch
Patching with EntityIronGolem.patch
Patching with TileEntityBanner.patch
Patching with SlotFurnaceResult.patch
Patching with BlockChorusFlower.patch
Patching with ItemMinecart.patch
Patching with EntitySkeleton.patch
Patching with BlockCauldron.patch
Patching with BlockGrass.patch
Patching with TileEntityConduit.patch
Patching with EntitySmallFireball.patch
Patching with TileEntityBrewingStand.patch
Patching with EntityInsentient.patch
Patching with RecipeRepair.patch
Patching with ContainerChest.patch
Patching with BlockSoil.patch
Patching with BlockCake.patch
Patching with ContainerBrewingStand.patch
Patching with EntitySilverfish.patch
Patching with RecipeArmorDye.patch
Patching with ContainerAnvil.patch
Patching with WorldGenTreeProvider.patch
Patching with TileEntityCommand.patch
Patching with BlockNote.patch
Patching with PathfinderGoalFollowOwner.patch
Patching with ExpirableListEntry.patch
Patching with EntitySpectralArrow.patch
Patching with JsonList.patch
Patching with IRecipe.patch
Patching with WorldNBTStorage.patch
Patching with ItemWaterLily.patch
Patching with EntityLightning.patch
Patching with EntityShulkerBullet.patch
Patching with BlockPoweredRail.patch
Patching with TileEntitySign.patch
Patching with ContainerHorse.patch
Patching with PathfinderGoalTame.patch
Patching with EntitySnowman.patch
Patching with PathfinderGoalPanic.patch
Patching with EntityGuardianElder.patch
Patching with CustomFunctionData.patch
Patching with RegionFileCache.patch
Patching with ItemBucket.patch
Patching with WorldGenGroundBush.patch
Patching with EntityCaveSpider.patch
Patching with PathfinderGoalOwnerHurtTarget.patch
Patching with Enchantment.patch
Patching with EntitySlime.patch
Patching with DataWatcher.patch
Patching with BlockMushroom.patch
Patching with MobSpawnerPhantom.patch
Patching with BlockPortal.patch
Patching with BlockRedstoneWire.patch
Patching with PathfinderGoalTarget.patch
Patching with ItemEnderPearl.patch
Patching with PathfinderGoalMakeLove.patch
Patching with FluidTypeLava.patch
Patching with FurnaceRecipe.patch
Patching with PathfinderGoalOwnerHurtByTarget.patch
Patching with EntityPainting.patch
Patching with InventoryLargeChest.patch
Patching with CommandBlockListenerAbstract.patch
Patching with EntityItem.patch
Patching with Advancements.patch
Patching with BlockSnowBlock.patch
Patching with ItemDye.patch
Patching with CommandSpreadPlayers.patch
Patching with EntityItemFrame.patch
Patching with BlockDragonEgg.patch
Patching with EntityWitch.patch
Patching with EntitySkeletonAbstract.patch
Patching with ItemRecord.patch
Patching with PlayerList.patch
Patching with IDataManager.patch
Patching with TileEntityShulkerBox.patch
Patching with BlockButtonAbstract.patch
Patching with PacketDataSerializer.patch
Patching with EntityMinecartAbstract.patch
Patching with EntityFishingHook.patch
Patching with SpawnerCreature.patch
Patching with BlockPumpkinCarved.patch
Patching with BlockDirtSnowSpreadable.patch
Patching with BlockLeaves.patch
Patching with ItemStack.patch
Patching with EntityCreature.patch
Patching with ItemSnowball.patch
Patching with EntitySheep.patch
Patching with TileEntityFurnace.patch
Patching with PathfinderGoalBreed.patch
Patching with BlockMagma.patch
Patching with EntityVex.patch
Patching with EntityAreaEffectCloud.patch
Patching with BlockReed.patch
Patching with EntityExperienceOrb.patch
Patching with BlockDaylightDetector.patch
Patching with ItemLeash.patch
Patching with ItemFish.patch
Patching with ItemWorldMap.patch
Patching with BlockConcretePowder.patch
Patching with World.patch
Patching with ContainerShulkerBox.patch
Patching with VillageSiege.patch
Patching with EntityPlayer.patch
Patching with PortalTravelAgent.patch
Patching with EntityCow.patch
Patching with CraftingManager.patch
Patching with EntityHuman.patch
Patching with ItemHanging.patch
Patching with PathfinderGoalNearestAttackableTarget.patch
Patching with EntityTrackerEntry.patch
Patching with TileEntityHopper.patch
Patching with EntityLiving.patch
Patching with EntityFish.patch
Patching with TileEntityEndGateway.patch
Patching with BlockMinecartDetector.patch
Patching with EntityZombie.patch
Patching with EntityThrownExpBottle.patch
Patching with ItemFood.patch
Patching with ChunkMap.patch
Patching with ItemFishingRod.patch
Patching with InventoryEnderChest.patch
Patching with BlockWaterLily.patch
Patching with ContainerEnchantTable.patch
Patching with EntityTippedArrow.patch
Patching with BlockSponge.patch
Patching with Explosion.patch
Patching with IInventory.patch
Patching with ItemGoldenAppleEnchanted.patch
Patching with ContainerBeacon.patch
Patching with ItemBow.patch
Patching with BlockRedstoneOre.patch
Patching with CrashReport.patch
Patching with RecipeFireworks.patch
Patching with ContainerPlayer.patch
Patching with TileEntityBeacon.patch
Patching with ItemWrittenBook.patch
Patching with MobEffectList.patch
Patching with BlockMonsterEggs.patch
Patching with EntityWitherSkull.patch
Patching with PathfinderGoalEatTile.patch
Patching with EntityEnderman.patch
Patching with ChunkRegionLoader.patch
Patching with BlockPressurePlateBinary.patch
Patching with EntityEnderCrystal.patch
Patching with DataConverterFlatten.patch
Patching with EntityHanging.patch
Patching with EntityRabbit.patch
Patching with ItemChorusFruit.patch
Patching with ShapelessRecipes.patch
Patching with PropertyManager.patch
Patching with WorldManager.patch
Patching with ItemPotion.patch
Patching with PacketPlayInCloseWindow.patch
Patching with WorldMap.patch
Patching with CommandGamemode.patch
Patching with BlockTripwireHook.patch
Patching with EntityParrot.patch
Patching with EntityTNTPrimed.patch
Patching with EntityCreeper.patch
Patching with BlockSkullAbstract.patch
Patching with ItemGoldenApple.patch
Patching with BlockWitherSkull.patch
Patching with BlockStateInteger.patch
Patching with EntityTurtle.patch
Patching with EntityHorseChestedAbstract.patch
Patching with Container.patch
Patching with PlayerConnection.patch
Patching with BlockDispenser.patch
Patching with PacketPlayOutWorldBorder.patch
Patching with EntityZombieHusk.patch
Patching with MobSpawnerAbstract.patch
Patching with MerchantRecipe.patch
Patching with EnchantmentFrostWalker.patch
Patching with AttributeRanged.patch
Patching with EntityBoat.patch
Patching with PathfinderGoalDefendVillage.patch
Patching with EntitySlice.patch
Patching with BlockPiston.patch
Patching with EntityIllagerIllusioner.patch
Patching with EntityWither.patch
Patching with ItemBoat.patch
Patching with WorldData.patch
Patching with CommandDispatcher.patch
Patching with PathfinderGoalHurtByTarget.patch
Patching with AdvancementDataPlayer.patch
Patching with EntityDamageSourceIndirect.patch
Patching with ContainerFurnace.patch
Compiling Bukkit
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Bukkit 1.13-R0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ bukkit ---
[INFO] Deleting /root/minecraft/Bukkit/target
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ bukkit ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /root/minecraft/Bukkit/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.7.0:compile (default-compile) @ bukkit ---
[INFO] Changes detected - recompiling the module!
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ bukkit ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /root/minecraft/Bukkit/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.7.0:testCompile (default-testCompile) @ bukkit ---
[INFO] Changes detected - recompiling the module!
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ bukkit ---
[INFO] Surefire report directory: /root/minecraft/Bukkit/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.bukkit.NoteTest
Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.121 sec
Running org.bukkit.EntityEffectTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.ChatPaginatorTest
Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
Running org.bukkit.ChatColorTest
Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.bukkit.ArtTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
Running org.bukkit.conversations.ValidatingPromptTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.021 sec
Running org.bukkit.conversations.ConversationTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec
Running org.bukkit.conversations.ConversationContextTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec
Running org.bukkit.ColorTest
Tests run: 52, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.216 sec
Running org.bukkit.InstrumentTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.DifficultyTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.NamespacedKeyTest
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec
Running org.bukkit.CoalTypeTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.WorldTypeTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.configuration.MemoryConfigurationTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.configuration.file.YamlConfigurationTest
Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.076 sec
Running org.bukkit.configuration.MemorySectionTest
Tests run: 42, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.147 sec
Running org.bukkit.TreeSpeciesTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.event.PlayerChatTabCompleteEventTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.086 sec
Running org.bukkit.event.SyntheticEventTest
Jul 27, 2018 4:29:02 PM org.bukkit.Bukkit setServer
INFO: This server is running TestServer version Version_null (Implementing API version BukkitVersion_null)
Invk org.bukkit.event.TestEvent@18e36d14
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.108 sec
Running org.bukkit.LocationTest
Tests run: 60, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.048 sec
Running org.bukkit.metadata.LazyMetadataValueTest
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.metadata.FixedMetadataValueTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.metadata.MetadataConversionTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.metadata.MetadataValueAdapterTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
Running org.bukkit.metadata.MetadataStoreTest
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.plugin.PluginManagerTest
Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
Running org.bukkit.plugin.messaging.StandardMessengerTest
Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
Running org.bukkit.plugin.TimedRegisteredListenerTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
Running org.bukkit.DyeColorTest
Tests run: 80, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
Running org.bukkit.materials.MaterialDataTest
Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.027 sec
Running org.bukkit.BukkitMirrorTest
Tests run: 520, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.17 sec
Running org.bukkit.MaterialTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.111 sec
Running org.bukkit.CropStateTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.EffectTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.GameModeTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.util.StringUtilStartsWithTest
Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
Running org.bukkit.util.StringUtilTest
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running org.bukkit.util.io.BukkitObjectStreamTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 3, Time elapsed: 0.104 sec
Running org.bukkit.GrassSpeciesTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Results :
Tests run: 956, Failures: 0, Errors: 0, Skipped: 3
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ bukkit ---
[INFO] Building jar: /root/minecraft/Bukkit/target/bukkit-1.13-R0.1-SNAPSHOT.jar
[INFO]
[INFO] --- maven-shade-plugin:3.1.1:shade (default) @ bukkit ---
[INFO] Including commons-lang:commons-lang:jar:2.6 in the shaded jar.
[INFO] Including com.googlecode.json-simple:json-simple:jar:1.1.1 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:21.0 in the shaded jar.
[INFO] Including com.google.code.gson:gson:jar:2.8.0 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.21 in the shaded jar.
[INFO] Attaching shaded artifact.
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ bukkit ---
[INFO] Installing /root/minecraft/Bukkit/target/bukkit-1.13-R0.1-SNAPSHOT.jar to /root/.m2/repository/org/bukkit/bukkit/1.13-R0.1-SNAPSHOT/bukkit-1.13-R0.1-SNAPSHOT.jar
[INFO] Installing /root/minecraft/Bukkit/pom.xml to /root/.m2/repository/org/bukkit/bukkit/1.13-R0.1-SNAPSHOT/bukkit-1.13-R0.1-SNAPSHOT.pom
[INFO] Installing /root/minecraft/Bukkit/target/bukkit-1.13-R0.1-SNAPSHOT-shaded.jar to /root/.m2/repository/org/bukkit/bukkit/1.13-R0.1-SNAPSHOT/bukkit-1.13-R0.1-SNAPSHOT-shaded.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8.509 s
[INFO] Finished at: 2018-07-27T16:29:04-07:00
[INFO] Final Memory: 13M/50M
[INFO] ------------------------------------------------------------------------
Compiling CraftBukkit
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building CraftBukkit 1.13-R0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ craftbukkit ---
[INFO] Deleting /root/minecraft/CraftBukkit/target
[INFO]
[INFO] --- scriptus:0.2:describe (default) @ craftbukkit ---
[INFO] Set property "describe" to "git-Bukkit-d5b95a2"
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ craftbukkit ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 4 resources
[INFO]
[INFO] --- maven-compiler-plugin:3.7.0:compile (default-compile) @ craftbukkit ---
[INFO] Changes detected - recompiling the module!
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ craftbukkit ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /root/minecraft/CraftBukkit/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.7.0:testCompile (default-testCompile) @ craftbukkit ---
[INFO] Changes detected - recompiling the module!
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ craftbukkit ---
[INFO] Surefire report directory: /root/minecraft/CraftBukkit/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.bukkit.SoundTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.569 sec
Running org.bukkit.potion.PotionTest
Reloading ResourceManager: Default
Jul 27, 2018 4:29:23 PM org.bukkit.Bukkit setServer
INFO: This server is running org.bukkit.support.DummyServer version null (Implementing API version 1.13-R0.1-SNAPSHOT)
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.366 sec
Running org.bukkit.EnchantmentTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running org.bukkit.ArtTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.021 sec
Running org.bukkit.StatisticsAndAchievementsTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.09 sec
Running org.bukkit.BiomeTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055 sec
Running org.bukkit.LegacyTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.027 sec
Running org.bukkit.ParticleTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.153 sec
Running org.bukkit.WorldTypeTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
Running org.bukkit.DyeColorsTest
Tests run: 32, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
Running org.bukkit.BlockDataTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
Running org.bukkit.map.MapTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
Running org.bukkit.ChatTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
Running org.bukkit.MaterialTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 sec
Running org.bukkit.entity.EnderDragonPhaseTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.054 sec
Running org.bukkit.entity.EntityTypesTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running org.bukkit.entity.TropicalFishTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
Running org.bukkit.craftbukkit.generator.ChunkDataTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.334 sec
Running org.bukkit.craftbukkit.inventory.NMSCraftItemStackTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.347 sec
Running org.bukkit.craftbukkit.inventory.ItemFactoryTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.9 sec
Running org.bukkit.craftbukkit.inventory.FactoryItemMaterialTest
Tests run: 3140, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.321 sec
Running org.bukkit.craftbukkit.inventory.ItemMetaTest
Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.craftbukkit.inventory.ItemMetaCloneTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.craftbukkit.inventory.ItemMetaImplementationOverrideTest
Tests run: 126, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
Running org.bukkit.PerMaterialTest
Tests run: 13840, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.857 sec
Results :
Tests run: 17191, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ craftbukkit ---
[INFO] Building jar: /root/minecraft/CraftBukkit/target/craftbukkit-1.13-R0.1-SNAPSHOT.jar
[INFO]
[INFO] --- maven-shade-plugin:3.1.1:shade (default) @ craftbukkit ---
[INFO] Including org.bukkit:bukkit:jar:1.13-R0.1-SNAPSHOT in the shaded jar.
[INFO] Including commons-lang:commons-lang:jar:2.6 in the shaded jar.
[INFO] Including com.googlecode.json-simple:json-simple:jar:1.1.1 in the shaded jar.
[INFO] Including com.google.guava:guava:jar:21.0 in the shaded jar.
[INFO] Including com.google.code.gson:gson:jar:2.8.0 in the shaded jar.
[INFO] Including org.yaml:snakeyaml:jar:1.21 in the shaded jar.
[INFO] Including org.spigotmc:minecraft-server:jar:1.13-SNAPSHOT in the shaded jar.
[INFO] Including jline:jline:jar:2.12.1 in the shaded jar.
[INFO] Including org.ow2.asm:asm:jar:6.2 in the shaded jar.
[INFO] Including org.xerial:sqlite-jdbc:jar:3.23.1 in the shaded jar.
[INFO] Including mysql:mysql-connector-java:jar:5.1.46 in the shaded jar.
[WARNING] Discovered module-info.class. Shading will break its strong encapsulation.
[WARNING] minecraft-server-1.13-SNAPSHOT.jar, craftbukkit-1.13-R0.1-SNAPSHOT.jar define 542 overlapping classes:
[WARNING] - net.minecraft.server.DispenserRegistry$2
[WARNING] - net.minecraft.server.DispenserRegistry$12
[WARNING] - net.minecraft.server.EntityTurtle$d
[WARNING] - net.minecraft.server.TickListServer
[WARNING] - net.minecraft.server.PathfinderGoalNearestAttackableTargetInsentient
[WARNING] - net.minecraft.server.BlockWaterLily
[WARNING] - net.minecraft.server.PathfinderGoalHurtByTarget
[WARNING] - net.minecraft.server.BlockGrass
[WARNING] - net.minecraft.server.TileEntityConduit
[WARNING] - net.minecraft.server.EntityHorseChestedAbstract
[WARNING] - 532 more...
[WARNING] minecraft-server-1.13-SNAPSHOT.jar, guava-21.0.jar define 1837 overlapping classes:
[WARNING] - com.google.common.collect.ImmutableMapValues$1
[WARNING] - com.google.common.io.LineProcessor
[WARNING] - com.google.common.util.concurrent.AbstractService$5
[WARNING] - com.google.common.io.BaseEncoding$StandardBaseEncoding$2
[WARNING] - com.google.common.io.ByteProcessor
[WARNING] - com.google.common.math.package-info
[WARNING] - com.google.common.util.concurrent.SimpleTimeLimiter
[WARNING] - com.google.common.cache.AbstractCache$StatsCounter
[WARNING] - com.google.common.util.concurrent.CycleDetectingLockFactory$Policies
[WARNING] - com.google.common.primitives.UnsignedInts$LexicographicalComparator
[WARNING] - 1827 more...
[WARNING] minecraft-server-1.13-SNAPSHOT.jar, gson-2.8.0.jar define 174 overlapping classes:
[WARNING] - com.google.gson.internal.bind.JsonTreeWriter
[WARNING] - com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl
[WARNING] - com.google.gson.internal.Excluder
[WARNING] - com.google.gson.JsonDeserializationContext
[WARNING] - com.google.gson.Gson$6
[WARNING] - com.google.gson.FieldNamingPolicy$5
[WARNING] - com.google.gson.internal.$Gson$Types
[WARNING] - com.google.gson.internal.LinkedTreeMap$KeySet
[WARNING] - com.google.gson.internal.UnsafeAllocator$2
[WARNING] - com.google.gson.internal.bind.SqlDateTypeAdapter$1
[WARNING] - 164 more...
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/
[INFO] Replacing original artifact with shaded artifact.
[INFO] Replacing /root/minecraft/CraftBukkit/target/craftbukkit-1.13-R0.1-SNAPSHOT.jar with /root/minecraft/CraftBukkit/target/craftbukkit-1.13-R0.1-SNAPSHOT-shaded.jar
[INFO] Dependency-reduced POM written at: /root/minecraft/CraftBukkit/dependency-reduced-pom.xml
[INFO]
[INFO] --- maven-install-plugin:2.4:install (default-install) @ craftbukkit ---
[INFO] Installing /root/minecraft/CraftBukkit/target/craftbukkit-1.13-R0.1-SNAPSHOT.jar to /root/.m2/repository/org/bukkit/craftbukkit/1.13-R0.1-SNAPSHOT/craftbukkit-1.13-R0.1-SNAPSHOT.jar
[INFO] Installing /root/minecraft/CraftBukkit/dependency-reduced-pom.xml to /root/.m2/repository/org/bukkit/craftbukkit/1.13-R0.1-SNAPSHOT/craftbukkit-1.13-R0.1-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 53.380 s
[INFO] Finished at: 2018-07-27T16:29:59-07:00
[INFO] Final Memory: 22M/80M
[INFO] ------------------------------------------------------------------------
Rebuilding Forked projects....
From file:///root/minecraft/Bukkit
7731ecde..47e3d295 master -> origin/master
7731ecde..47e3d295 spigot -> origin/spigot
HEAD is now at 47e3d295 Add SpawnReason.DROWNED
Resetting Spigot-API to Bukkit...
HEAD is now at 47e3d295 Add SpawnReason.DROWNED
Applying patches to Spigot-API...
fatal: Resolve operation not in progress, we are not resuming.
Applying: POM Changes
Applying: Skeleton API Implementations
Applying: Spigot Timings
Applying: Add PlayerItemDamageEvent
Applying: BungeeCord Support
Applying: Add Arrow API
Applying: Define EntitySpawnEvent and SpawnerSpawnEvent
Applying: Entity Mount and Dismount Events
Applying: InventoryClickEvent getClickedInventory
Applying: Added getAllSessionData() to the Conversation API.
Applying: Player Collision API
Applying: Expand Boolean Prompt Values
Applying: Add Getter for Entity Invulnerability
Applying: Add respawn API.
Applying: Implement Locale Getter for Players
Applying: Add support for fetching hidden players
Applying: Silenceable Lightning API
Applying: Remove deprecation on some player lookup methods
Applying: Add PlayerSpawnLocationEvent.
Applying: Ease ClassLoader Deadlocks Where Possible
Applying: Undeprecate Player#updateInventory()V
Applying: Added isUnbreakable and setUnbreakable to ItemMeta
Applying: BungeeCord Chat API
Applying: Add restart API.
Patches applied cleanly to Spigot-API
From file:///root/minecraft/CraftBukkit
+ 616c35a8...0de11cbf patched -> origin/patched (forced update)
HEAD is now at 0de11cbf CraftBukkit $ Fri Jul 27 16:28:54 PDT 2018
Resetting Spigot-Server to CraftBukkit...
HEAD is now at 0de11cbf CraftBukkit $ Fri Jul 27 16:28:54 PDT 2018
Applying patches to Spigot-Server...
fatal: Resolve operation not in progress, we are not resuming.
Applying: POM Changes
Applying: Skeleton API Implementations
Applying: mc-dev imports
Applying: Spigot Configuration
Applying: Crop Growth Rates
Applying: Merge tweaks and configuration
Applying: Async Operation Catching
Applying: View Distance
Applying: Spigot Timings
Applying: Fix Mob Spawning Relative to View Distance
Applying: Handle Null Tile Entities
Applying: Item Despawn Rate
Applying: Entity Activation Range
Applying: Metrics
Applying: PlayerItemDamageEvent
Applying: Entity Tracking Ranges
Applying: Thread Naming and Tweaks
Applying: Close Unloaded Save Files
Applying: Remove -o Option
Applying: Implement Arrow API
Applying: Hopper Customisations
Applying: Allow Disabling of Command Logging
Applying: Allow Disabling of Command TabComplete
Applying: Configurable Messages
Applying: Allow Disabling of Random Lighting Updates
Applying: Properly Close Inventories
Applying: Disallow Interaction With Self
Applying: Entity Mount and Dismount Events
Applying: Prevent Ghost Players Caused by Plugins
Applying: Plug World Unload Memory Leak
Applying: Player Collision API
Applying: Fully Disable Snooper When Not Required
Applying: Add Getter for Entity Invulnerability
Applying: Don't Special Case X Move Value
Applying: Implement respawn API.
Applying: Arrow Despawn Rate
Applying: Watchdog Thread.
Applying: Fix Broken Async Chat
Applying: Fire PreLogin Events in Offline Mode
Applying: BungeeCord Support
Applying: Allow Disabling Zombie Villager Aggression
Applying: Configurable Amount of Netty Threads
Applying: Log Cause of Unexpected Exceptions
Applying: Save ticks lived to nbttag
Applying: Add Option to Nerf Mobs from Spawners
Applying: Disable Connected Check on setScoreboard
Applying: Add Late Bind Option
Applying: Allow statistics to be disabled/forced
Applying: Try and Debug Crash Reports Crashing
Applying: Improve AutoSave Mechanism
Applying: Catch stalling on corrupted map data / NBT arrays.
Applying: Allow toggling of ZombiePigmen spawning in portal blocks
Applying: Highly Optimized Tick Loop
Applying: Configurable Ping Sample Size
Applying: Add Optional Tick Shuffling
Applying: Implement Locale Getter for Players
Applying: Spam Filter Exclusions
Applying: Add Option to Silence CommandBlock Console
Applying: Add support for fetching hidden players
Applying: Cap Channel Registrations
Applying: Allow vanilla commands to be the main version of a command
Applying: Implement Silenceable Lightning API
Applying: Use one PermissibleBase for all Command Blocks
Applying: Prevent hoppers from loading chunks
Applying: Guard Entity List
Applying: Fix ConcurrentModificationException while being idle kicked in a vehicle
Applying: Cancellable WitherSkull potion effect
Applying: Descriptive kick reasons instead of Nope!
Applying: Configurable dragon death and wither spawn sounds
Applying: Display 'Spigot' in client crashes, server lists and Mojang stats
Applying: Treat Bungee as Online Mode
Applying: Add Conversion Message
Applying: Print Stack on InternalException
Applying: Use Offline Player Data Once if Required.
Applying: Use Provided Case for Non Existent Offline Players
Applying: Check for blank OfflinePlayer Names
Applying: Fix Player Banning
Applying: Fix ban expire dates.
Applying: Correct Ban Expiration
Applying: Log null TileEntity Owner
Applying: Convert player skulls async
Applying: Prevent NoClassDefError crash and notify on crash
Applying: Fix race condition that could kill connections before they were initiated
Applying: Configurable UserCache cap
Applying: Implement PlayerSpawnLocationEvent.
Applying: Cap Objective Score Length
Applying: Process conversation input on the main thread. Fixes BUKKIT-5611
Applying: Configurable save-on-stop-only for UserCache
Applying: Cross World Entity Teleportation
Applying: Limit block placement/interaction packets
Applying: Better item validation
Applying: Further Seed Customisation
Applying: Add More Information to session.lock Errors
Applying: Safer JSON Loading
Applying: Add CommandLine EULA Flag
Applying: Fix for enchanting table wiping meta when placing stacked items
Applying: Don't spawn bonus ocelots when plugins spawn ocelots
Applying: Prevent a crash involving attributes
Applying: Make "moved wrongly" limit configurable
Applying: Fix Null Tile Entity Worlds
Applying: Make "moved too quickly" limit configurable
Applying: Apply NBTReadLimiter to more things.
Applying: Allow Attribute Capping.
Applying: Only fetch an online UUID in online mode
Applying: Filter attribute modifiers which cause the attribute to go out of its range
Applying: Plug WorldMap Memory Leak
Applying: Fix Corrupted Trapped Chest
Applying: Remove uneeded validation
Applying: Add Hunger Config Values
Applying: Make debug logging togglable.
Applying: Limit TNT Detonations per tick
Applying: Added isUnbreakable and setUnbreakable to ItemMeta
Applying: Configurable Hanging Tick
Applying: BungeeCord Chat API
Applying: Allow Capping (Tile)Entity Tick Time.
Applying: Use Standard List for EntitySlices.
Applying: Use Map for getPlayer(String) lookup.
Applying: Clear Packet Queue on Disconnect
Applying: Implement SpawnerSpawnEvent.
Applying: Don't tick blocks if neighbor chunks aren't loaded
Applying: Branchless NibbleArray
Applying: Replace chunk loading / unloading rate throttling.
Applying: Configurable Advancement Disabling
Applying: Make unloaded chunk saving more asynchronous
Applying: Allow changing minimum squid spawn range
Patches applied cleanly to Spigot-Server
*** Spigot patches applied!
Compiling Spigot & Spigot-API
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] Spigot-API
[INFO] Spigot-Parent
[INFO] Spigot
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Spigot-API 1.13-R0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: https://hub.spigotmc.org/nexus/content/groups/public/net/md-5/bungeecord-chat/1.12-SNAPSHOT/maven-metadata.xml
Progress (1): 1.2 kB
Downloaded: https://hub.spigotmc.org/nexus/content/groups/public/net/md-5/bungeecord-chat/1.12-SNAPSHOT/maven-metadata.xml (1.2 kB at 2.2 kB/s)
Downloading: https://hub.spigotmc.org/nexus/content/groups/public/net/md-5/bungeecord-parent/1.12-SNAPSHOT/maven-metadata.xml
Progress (1): 602 B
Downloaded: https://hub.spigotmc.org/nexus/content/groups/public/net/md-5/bungeecord-parent/1.12-SNAPSHOT/maven-metadata.xml (602 B at 2.2 kB/s)
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ spigot-api ---
[INFO] Deleting /root/minecraft/Spigot/Spigot-API/target
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ spigot-api ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /root/minecraft/Spigot/Spigot-API/src/main/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.7.0:compile (default-compile) @ spigot-api ---
[INFO] Changes detected - recompiling the module!
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ spigot-api ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /root/minecraft/Spigot/Spigot-API/src/test/resources
[INFO]
[INFO] --- maven-compiler-plugin:3.7.0:testCompile (default-testCompile) @ spigot-api ---
[INFO] Changes detected - recompiling the module!
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ spigot-api ---
[INFO] Surefire report directory: /root/minecraft/Spigot/Spigot-API/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running org.bukkit.NoteTest
Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.086 sec
Running org.bukkit.EntityEffectTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.ChatPaginatorTest
Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 sec
Running org.bukkit.ChatColorTest
Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec
Running org.bukkit.ArtTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec
Running org.bukkit.conversations.ValidatingPromptTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
Running org.bukkit.conversations.ConversationTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
Running org.bukkit.conversations.ConversationContextTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 sec
Running org.bukkit.ColorTest
Tests run: 52, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.171 sec
Running org.bukkit.InstrumentTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.DifficultyTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.NamespacedKeyTest
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.CoalTypeTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.007 sec
Running org.bukkit.WorldTypeTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.configuration.MemoryConfigurationTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.configuration.file.YamlConfigurationTest
Tests run: 17, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.077 sec
Running org.bukkit.configuration.MemorySectionTest
Tests run: 42, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.167 sec
Running org.bukkit.TreeSpeciesTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.event.PlayerChatTabCompleteEventTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078 sec
Running org.bukkit.event.SyntheticEventTest
Jul 27, 2018 4:30:11 PM org.bukkit.Bukkit setServer
INFO: This server is running TestServer version Version_null (Implementing API version BukkitVersion_null)
Invk org.bukkit.event.TestEvent@60b4beb4
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.11 sec
Running org.bukkit.LocationTest
Tests run: 60, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.045 sec
Running org.bukkit.metadata.LazyMetadataValueTest
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running org.bukkit.metadata.FixedMetadataValueTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
Running org.bukkit.metadata.MetadataConversionTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
Running org.bukkit.metadata.MetadataValueAdapterTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
Running org.bukkit.metadata.MetadataStoreTest
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.plugin.PluginManagerTest
Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
Running org.bukkit.plugin.messaging.StandardMessengerTest
Tests run: 18, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
Running org.bukkit.plugin.TimedRegisteredListenerTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.DyeColorTest
Tests run: 80, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.048 sec
Running org.bukkit.materials.MaterialDataTest
Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 sec
Running org.bukkit.BukkitMirrorTest
Tests run: 525, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.146 sec
Running org.bukkit.MaterialTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.1 sec
Running org.bukkit.CropStateTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.EffectTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.bukkit.GameModeTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
Running org.bukkit.util.StringUtilStartsWithTest
Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.bukkit.util.StringUtilTest
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running org.bukkit.util.io.BukkitObjectStreamTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 3, Time elapsed: 0.064 sec
Running org.bukkit.GrassSpeciesTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Results :
Tests run: 961, Failures: 0, Errors: 0, Skipped: 3
[INFO]
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ spigot-api ---
[INFO] Building jar: /root/minecraft/Spigot/Spigot-API/target/spigot-api-1.13-R0.1-SNAPSHOT.jar
[INFO]
[INFO] --- maven-shade-plugin:3.1.1:shade (default) @ spigot-api ---
[INFO] Including commons-lang:commons-lang:jar:2.6 in the shaded jar.