perf: opt-out of paper plugin remapping

Since we don't use NMS, this is harmless. Saves about 100ms of startup
time on first boot on my machine
This commit is contained in:
amyavi 2024-06-23 13:07:12 -03:00
parent 130f06fe5a
commit 1ca2ffc91a
No known key found for this signature in database

12
pom.xml
View file

@ -30,6 +30,18 @@
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifestEntries>
<paperweight-mappings-namespace>mojang</paperweight-mappings-namespace>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>