summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorLuke GB <github@lukegb.com>2011-02-08 22:46:48 +0000
committerLuke GB <github@lukegb.com>2011-02-08 22:46:48 +0000
commitb76bc9cfb3613ebdafe20055e4e3e87368ae20ad (patch)
tree3e709891ae6d40ecb046c0e9ba245da00ee4a4b4 /pom.xml
parentb9a37399ae1f60af6332063bd0457ecc8f693f2f (diff)
downloadcraftbukkit-b76bc9cfb3613ebdafe20055e4e3e87368ae20ad.tar
craftbukkit-b76bc9cfb3613ebdafe20055e4e3e87368ae20ad.tar.gz
craftbukkit-b76bc9cfb3613ebdafe20055e4e3e87368ae20ad.tar.lz
craftbukkit-b76bc9cfb3613ebdafe20055e4e3e87368ae20ad.tar.xz
craftbukkit-b76bc9cfb3613ebdafe20055e4e3e87368ae20ad.zip
Unseal net.bukkit
Fix fail Prepare to seal. THIS IS ONE WEEK'S NOTICE.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml63
1 files changed, 40 insertions, 23 deletions
diff --git a/pom.xml b/pom.xml
index 2f182d96..7a95bb2b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,6 +42,45 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <Main-Class>org.bukkit.craftbukkit.Main</Main-Class>
+ <Implementation-Title>CraftBukkit</Implementation-Title>
+ <Implementation-Version>${build.version}</Implementation-Version>
+ <Implementation-Vendor>Bukkit Team</Implementation-Vendor>
+ <Specification-Title>Bukkit</Specification-Title>
+ <Specification-Version>${api.version}</Specification-Version>
+ <Specification-Vendor>Bukkit Team</Specification-Vendor>
+ <Sealed>false</Sealed>
+ </manifestEntries>
+ <manifestSections>
+ <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>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
@@ -50,28 +89,6 @@
<goals>
<goal>shade</goal>
</goals>
- <configuration>
- <transformers>
- <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
- <manifestEntries>
- <Main-Class>org.bukkit.craftbukkit.Main</Main-Class>
- <Implementation-Title>CraftBukkit</Implementation-Title>
- <Implementation-Version>${build.version}</Implementation-Version>
- <Implementation-Vendor>Bukkit Team</Implementation-Vendor>
- <Specification-Title>Bukkit</Specification-Title>
- <Specification-Version>${api.version}</Specification-Version>
- <Specification-Vendor>Bukkit Team</Specification-Vendor>
- <Sealed>true</Sealed>
- <Name>org/bukkit/</Name>
- <Sealed>true</Sealed>
- <Name>com/bukkit/</Name>
- <Sealed>true</Sealed>
- <Name>net/bukkit/</Name>
- <Sealed>true</Sealed>
- </manifestEntries>
- </transformer>
- </transformers>
- </configuration>
</execution>
</executions>
</plugin>
@@ -86,4 +103,4 @@
</plugin>
</plugins>
</build>
-</project>
+</project> \ No newline at end of file