3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-20 21:40:06 +01:00

Unseal net.bukkit

Fix fail
Prepare to seal. THIS IS ONE WEEK'S NOTICE.
Dieser Commit ist enthalten in:
Luke GB 2011-02-08 22:46:48 +00:00
Ursprung b9a37399ae
Commit b76bc9cfb3

55
pom.xml
Datei anzeigen

@ -42,17 +42,10 @@
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>1.4</version> <version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration> <configuration>
<transformers> <archive>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries> <manifestEntries>
<Main-Class>org.bukkit.craftbukkit.Main</Main-Class> <Main-Class>org.bukkit.craftbukkit.Main</Main-Class>
<Implementation-Title>CraftBukkit</Implementation-Title> <Implementation-Title>CraftBukkit</Implementation-Title>
@ -61,17 +54,41 @@
<Specification-Title>Bukkit</Specification-Title> <Specification-Title>Bukkit</Specification-Title>
<Specification-Version>${api.version}</Specification-Version> <Specification-Version>${api.version}</Specification-Version>
<Specification-Vendor>Bukkit Team</Specification-Vendor> <Specification-Vendor>Bukkit Team</Specification-Vendor>
<Sealed>true</Sealed> <Sealed>false</Sealed>
<Name>org/bukkit/</Name>
<Sealed>true</Sealed>
<Name>com/bukkit/</Name>
<Sealed>true</Sealed>
<Name>net/bukkit/</Name>
<Sealed>true</Sealed>
</manifestEntries> </manifestEntries>
</transformer> <manifestSections>
</transformers> <manifestSection>
<name>net/bukkit/</name>
<manifestEntries>
<Sealed>false</Sealed>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>com/bukkit/</name>
<manifestEntries>
<Sealed>false</Sealed>
</manifestEntries>
</manifestSection>
<manifestSection>
<name>org/bukkit/</name>
<manifestEntries>
<Sealed>false</Sealed>
</manifestEntries>
</manifestSection>
</manifestSections>
</archive>
</configuration> </configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>