mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 23:10:16 +01:00
Enable optional source JAR shading via profile shadeSourcesJar
mvn clean source:jar install -PshadeSouresJar achieves this goal. If 'source:jar' is not specified the resulting source JAR will not include CraftBukkit sources. Not specifying 'install' will result in an unshaded CraftBukkit source JAR and not include other sources, making it useless for debugging purposes. Shade CraftBukkit sources JAR. Add maven-shade-plugin configuration directives to create sources JAR and shade contents thereof. This ensures when source:jar goal is run, relocated CraftBukkit source files are also relocated for debugging and final code review purposes.
This commit is contained in:
parent
ad7b00b762
commit
068dab5be3
1 changed files with 8 additions and 0 deletions
8
pom.xml
8
pom.xml
|
@ -154,6 +154,7 @@
|
|||
<goal>shade</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<createSourcesJar>${shadeSourcesJar}</createSourcesJar>
|
||||
<relocations>
|
||||
<relocation>
|
||||
<pattern>joptsimple</pattern>
|
||||
|
@ -220,6 +221,13 @@
|
|||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>shadeSourcesJar</id>
|
||||
<properties>
|
||||
<shadeSourcesJar>true</shadeSourcesJar>
|
||||
<shadeSourcesContent>true</shadeSourcesContent>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>development</id>
|
||||
<build>
|
||||
|
|
Loading…
Reference in a new issue