3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-05 01:11:08 +02:00

Exclude processor file

Geyser was attempting to run it's annotation processors on projects that used it as a dependency, so let's just not :)
Dieser Commit ist enthalten in:
Redned 2021-07-22 08:31:54 -05:00 committet von RednedEpic
Ursprung 11f048a065
Commit 070ff46558

Datei anzeigen

@ -248,6 +248,16 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<excludes>
<exclude>**/services/javax.annotation.processing.Processor</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>