mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2025-03-02 11:11:08 +01:00
Minor changes to allow JavaDoc generation
This commit is contained in:
parent
3ae297c86d
commit
821f0fc2ac
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,6 +1,4 @@
|
||||
nb-configuration.xml
|
||||
dependency-reduced-pom.xml
|
||||
licenseheader.txt
|
||||
*dependency-reduced-pom.xml
|
||||
*nb-configuration.xml
|
||||
*/target
|
||||
*target
|
||||
|
@ -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>
|
||||
|
@ -22,7 +22,7 @@ import org.bukkit.WorldCreator;
|
||||
/**
|
||||
* @author Daniel Saukel
|
||||
*/
|
||||
abstract class InternalsProvider {
|
||||
public abstract class InternalsProvider {
|
||||
|
||||
abstract World createWorld(WorldCreator creator);
|
||||
|
||||
|
@ -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>
|
||||
|
@ -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}
|
||||
|
@ -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>
|
||||
|
@ -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());
|
||||
|
@ -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>
|
||||
|
@ -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());
|
||||
|
@ -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>
|
||||
|
@ -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());
|
||||
|
2
pom.xml
2
pom.xml
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user