Minor changes to allow JavaDoc generation

This commit is contained in:
Daniel Saukel 2016-07-12 02:11:49 +02:00
parent 3ae297c86d
commit 821f0fc2ac
14 changed files with 15 additions and 17 deletions

4
.gitignore vendored
View File

@ -1,6 +1,4 @@
nb-configuration.xml
dependency-reduced-pom.xml
licenseheader.txt
*dependency-reduced-pom.xml
*nb-configuration.xml
*/target
*target

View File

@ -8,6 +8,6 @@
<parent>
<groupId>io.github.dre2n</groupId>
<artifactId>dungeonsxl</artifactId>
<version>0.14${buildNo}</version>
<version>0.14.1-SNAPSHOT</version>
</parent>
</project>

View File

@ -22,7 +22,7 @@ import org.bukkit.WorldCreator;
/**
* @author Daniel Saukel
*/
abstract class InternalsProvider {
public abstract class InternalsProvider {
abstract World createWorld(WorldCreator creator);

View File

@ -1 +1 @@
mvn clean package -DbuildNo=""
mvn clean install

View File

@ -8,7 +8,7 @@
<parent>
<groupId>io.github.dre2n</groupId>
<artifactId>dungeonsxl</artifactId>
<version>0.14${buildNo}</version>
<version>0.14.1-SNAPSHOT</version>
</parent>
<build>
<resources>

View File

@ -1,6 +1,6 @@
name: DungeonsXL
main: io.github.dre2n.dungeonsxl.DungeonsXL
version: ${project.version}
version: ${project.version}${buildNo}
authors: [Frank Baumann, Milan Albrecht, Tobias Schmitz, Daniel Saukel]
description: ${project.description}
website: ${project.url}

View File

@ -8,7 +8,7 @@
<parent>
<groupId>io.github.dre2n</groupId>
<artifactId>dungeonsxl</artifactId>
<version>0.14${buildNo}</version>
<version>0.14.1-SNAPSHOT</version>
</parent>
<build>
<plugins>

View File

@ -48,7 +48,7 @@ import org.bukkit.plugin.PluginManager;
/**
* @author Daniel Saukel
*/
class v1_10_R1 extends InternalsProvider {
public class v1_10_R1 extends InternalsProvider {
MinecraftServer console;
CraftServer server = ((CraftServer) Bukkit.getServer());

View File

@ -8,7 +8,7 @@
<parent>
<groupId>io.github.dre2n</groupId>
<artifactId>dungeonsxl</artifactId>
<version>0.14${buildNo}</version>
<version>0.14.1-SNAPSHOT</version>
</parent>
<build>
<plugins>

View File

@ -48,7 +48,7 @@ import org.bukkit.plugin.PluginManager;
/**
* @author Daniel Saukel
*/
class v1_9_R1 extends InternalsProvider {
public class v1_9_R1 extends InternalsProvider {
MinecraftServer console;
CraftServer server = ((CraftServer) Bukkit.getServer());

View File

@ -8,7 +8,7 @@
<parent>
<groupId>io.github.dre2n</groupId>
<artifactId>dungeonsxl</artifactId>
<version>0.14${buildNo}</version>
<version>0.14.1-SNAPSHOT</version>
</parent>
<build>
<plugins>

View File

@ -48,7 +48,7 @@ import org.bukkit.plugin.PluginManager;
/**
* @author Daniel Saukel
*/
class v1_9_R2 extends InternalsProvider {
public class v1_9_R2 extends InternalsProvider {
MinecraftServer console;
CraftServer server = ((CraftServer) Bukkit.getServer());

View File

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.dre2n</groupId>
<artifactId>dungeonsxl</artifactId>
<version>0.14${buildNo}</version>
<version>0.14.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>DungeonsXL</name>
<url>https://dre2n.github.io</url>

View File

@ -8,10 +8,10 @@
<parent>
<groupId>io.github.dre2n</groupId>
<artifactId>dungeonsxl</artifactId>
<version>0.14${buildNo}</version>
<version>0.14.1-SNAPSHOT</version>
</parent>
<build>
<finalName>dungeonsxl-${project.version}</finalName>
<finalName>dungeonsxl-${project.version}${buildNo}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>