mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2025-03-09 13:19:04 +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
|
licenseheader.txt
|
||||||
*dependency-reduced-pom.xml
|
*dependency-reduced-pom.xml
|
||||||
*nb-configuration.xml
|
*nb-configuration.xml
|
||||||
*/target
|
*target
|
||||||
|
@ -8,6 +8,6 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.github.dre2n</groupId>
|
<groupId>io.github.dre2n</groupId>
|
||||||
<artifactId>dungeonsxl</artifactId>
|
<artifactId>dungeonsxl</artifactId>
|
||||||
<version>0.14${buildNo}</version>
|
<version>0.14.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
</project>
|
</project>
|
||||||
|
@ -22,7 +22,7 @@ import org.bukkit.WorldCreator;
|
|||||||
/**
|
/**
|
||||||
* @author Daniel Saukel
|
* @author Daniel Saukel
|
||||||
*/
|
*/
|
||||||
abstract class InternalsProvider {
|
public abstract class InternalsProvider {
|
||||||
|
|
||||||
abstract World createWorld(WorldCreator creator);
|
abstract World createWorld(WorldCreator creator);
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.github.dre2n</groupId>
|
<groupId>io.github.dre2n</groupId>
|
||||||
<artifactId>dungeonsxl</artifactId>
|
<artifactId>dungeonsxl</artifactId>
|
||||||
<version>0.14${buildNo}</version>
|
<version>0.14.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<build>
|
<build>
|
||||||
<resources>
|
<resources>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: DungeonsXL
|
name: DungeonsXL
|
||||||
main: io.github.dre2n.dungeonsxl.DungeonsXL
|
main: io.github.dre2n.dungeonsxl.DungeonsXL
|
||||||
version: ${project.version}
|
version: ${project.version}${buildNo}
|
||||||
authors: [Frank Baumann, Milan Albrecht, Tobias Schmitz, Daniel Saukel]
|
authors: [Frank Baumann, Milan Albrecht, Tobias Schmitz, Daniel Saukel]
|
||||||
description: ${project.description}
|
description: ${project.description}
|
||||||
website: ${project.url}
|
website: ${project.url}
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.github.dre2n</groupId>
|
<groupId>io.github.dre2n</groupId>
|
||||||
<artifactId>dungeonsxl</artifactId>
|
<artifactId>dungeonsxl</artifactId>
|
||||||
<version>0.14${buildNo}</version>
|
<version>0.14.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -48,7 +48,7 @@ import org.bukkit.plugin.PluginManager;
|
|||||||
/**
|
/**
|
||||||
* @author Daniel Saukel
|
* @author Daniel Saukel
|
||||||
*/
|
*/
|
||||||
class v1_10_R1 extends InternalsProvider {
|
public class v1_10_R1 extends InternalsProvider {
|
||||||
|
|
||||||
MinecraftServer console;
|
MinecraftServer console;
|
||||||
CraftServer server = ((CraftServer) Bukkit.getServer());
|
CraftServer server = ((CraftServer) Bukkit.getServer());
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.github.dre2n</groupId>
|
<groupId>io.github.dre2n</groupId>
|
||||||
<artifactId>dungeonsxl</artifactId>
|
<artifactId>dungeonsxl</artifactId>
|
||||||
<version>0.14${buildNo}</version>
|
<version>0.14.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -48,7 +48,7 @@ import org.bukkit.plugin.PluginManager;
|
|||||||
/**
|
/**
|
||||||
* @author Daniel Saukel
|
* @author Daniel Saukel
|
||||||
*/
|
*/
|
||||||
class v1_9_R1 extends InternalsProvider {
|
public class v1_9_R1 extends InternalsProvider {
|
||||||
|
|
||||||
MinecraftServer console;
|
MinecraftServer console;
|
||||||
CraftServer server = ((CraftServer) Bukkit.getServer());
|
CraftServer server = ((CraftServer) Bukkit.getServer());
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.github.dre2n</groupId>
|
<groupId>io.github.dre2n</groupId>
|
||||||
<artifactId>dungeonsxl</artifactId>
|
<artifactId>dungeonsxl</artifactId>
|
||||||
<version>0.14${buildNo}</version>
|
<version>0.14.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -48,7 +48,7 @@ import org.bukkit.plugin.PluginManager;
|
|||||||
/**
|
/**
|
||||||
* @author Daniel Saukel
|
* @author Daniel Saukel
|
||||||
*/
|
*/
|
||||||
class v1_9_R2 extends InternalsProvider {
|
public class v1_9_R2 extends InternalsProvider {
|
||||||
|
|
||||||
MinecraftServer console;
|
MinecraftServer console;
|
||||||
CraftServer server = ((CraftServer) Bukkit.getServer());
|
CraftServer server = ((CraftServer) Bukkit.getServer());
|
||||||
|
2
pom.xml
2
pom.xml
@ -2,7 +2,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>io.github.dre2n</groupId>
|
<groupId>io.github.dre2n</groupId>
|
||||||
<artifactId>dungeonsxl</artifactId>
|
<artifactId>dungeonsxl</artifactId>
|
||||||
<version>0.14${buildNo}</version>
|
<version>0.14.1-SNAPSHOT</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>DungeonsXL</name>
|
<name>DungeonsXL</name>
|
||||||
<url>https://dre2n.github.io</url>
|
<url>https://dre2n.github.io</url>
|
||||||
|
@ -8,10 +8,10 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.github.dre2n</groupId>
|
<groupId>io.github.dre2n</groupId>
|
||||||
<artifactId>dungeonsxl</artifactId>
|
<artifactId>dungeonsxl</artifactId>
|
||||||
<version>0.14${buildNo}</version>
|
<version>0.14.1-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<build>
|
<build>
|
||||||
<finalName>dungeonsxl-${project.version}</finalName>
|
<finalName>dungeonsxl-${project.version}${buildNo}</finalName>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
Loading…
Reference in New Issue
Block a user