Commits

DerFrZocker authored and md_5 committed da67ff1ad2b
#47: Don't apply patches to spigot if we don't build it
No tags

src/main/java/org/spigotmc/builder/Builder.java

Modified
704 704 {
705 705 runMavenAPI( bukkit, "source:jar" );
706 706 }
707 707
708 708 System.out.println( "Compiling CraftBukkit" );
709 709 runMavenServer( craftBukkit, "clean", "install" );
710 710 }
711 711
712 712 try
713 713 {
714 - runProcess( spigot, applyPatchesShell, "applyPatches.sh" );
715 - System.out.println( "*** Spigot patches applied!" );
716 -
717 714 if ( compile.contains( Compile.SPIGOT ) )
718 715 {
716 + runProcess( spigot, applyPatchesShell, "applyPatches.sh" );
717 + System.out.println( "*** Spigot patches applied!" );
718 +
719 719 System.out.println( "Compiling Spigot & Spigot-API" );
720 720 runMavenServer( spigot, "clean", "install" );
721 721
722 722 File spigotApi = new File( spigot, "Spigot-API" );
723 723 if ( generateDocs )
724 724 {
725 725 runMavenAPI( spigotApi, "javadoc:jar" );
726 726 }
727 727 if ( generateSource )
728 728 {

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut