Archiviert
13
0

Fix a few issues with loading

Dieser Commit ist enthalten in:
Dan Mulloy 2016-03-19 16:41:02 -04:00
Ursprung b4c0cc5a27
Commit 13b905e762
3 geänderte Dateien mit 15 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -3,7 +3,7 @@ version: ${project.version}${project.build.number}
description: Provides read/write access to the Minecraft protocol. description: Provides read/write access to the Minecraft protocol.
authors: [dmulloy2, comphenix] authors: [dmulloy2, comphenix]
main: com.comphenix.protocol.ProtocolLibrary main: com.comphenix.protocol.ProtocolLib
load: startup load: startup
database: false database: false

15
pom.xml
Datei anzeigen

@ -46,6 +46,18 @@
<defaultGoal>clean package install</defaultGoal> <defaultGoal>clean package install</defaultGoal>
<finalName>${project.name}</finalName> <finalName>${project.name}</finalName>
<sourceDirectory>src/main/java</sourceDirectory> <sourceDirectory>src/main/java</sourceDirectory>
<!--
<resources>
<resource>
<targetPath>.</targetPath>
<filtering>true</filtering>
<directory>src/main/resources/</directory>
<includes>
<include>*.yml</include>
</includes>
</resource>
</resources>
-->
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@ -65,7 +77,8 @@
<encoding>ISO-8859-1</encoding> <encoding>ISO-8859-1</encoding>
<doctitle>ProtocolLib JavaDocs</doctitle> <doctitle>ProtocolLib JavaDocs</doctitle>
<windowtitle>ProtocolLib JavaDocs</windowtitle> <windowtitle>ProtocolLib JavaDocs</windowtitle>
<bottom>Copyright &#169; {inceptionYear}&#x2013;{currentYear} Comphenix and dmulloy2. Licensed under the GNU GPL v2.</bottom> <bottom>Copyright &#169; {inceptionYear}&#x2013;{currentYear}
Comphenix and dmulloy2. Licensed under the GNU GPL v2.</bottom>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>