Skip to content

Commit

Permalink
Fix velocity config
Browse files Browse the repository at this point in the history
Remove bukkit module
  • Loading branch information
MCMDEV committed Jun 5, 2023
1 parent 3715b78 commit e59ddd4
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 314 deletions.
89 changes: 0 additions & 89 deletions hostprofiles-bukkit/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions hostprofiles-bukkit/src/main/resources/plugin.yml

This file was deleted.

2 changes: 1 addition & 1 deletion hostprofiles-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>hostprofiles</artifactId>
<groupId>de.mcmdev</groupId>
<version>0.1.2</version>
<version>0.1.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions hostprofiles-paper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>hostprofiles</artifactId>
<groupId>de.mcmdev</groupId>
<version>0.1.2</version>
<version>0.1.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>de.mcmdev</groupId>
<artifactId>hostprofiles-common</artifactId>
<version>0.1.2</version>
<version>0.1.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.papermc.paper</groupId>
Expand Down
2 changes: 1 addition & 1 deletion hostprofiles-paper/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: hostprofiles
version: 0.1.2
version: 0.1.3
author: MCMDEV
description: Define hosts to which players can connect to have a different profile.
main: de.mcmdev.hostprofiles.paper.PaperHostprofilesPlugin
4 changes: 2 additions & 2 deletions hostprofiles-velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>hostprofiles</artifactId>
<groupId>de.mcmdev</groupId>
<version>0.1.2</version>
<version>0.1.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>de.mcmdev</groupId>
<artifactId>hostprofiles-common</artifactId>
<version>0.1.2</version>
<version>0.1.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.spongepowered</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

@Plugin(
id = "hostprofiles",
version = "0.1.2",
version = "0.1.3",
description = "Define hosts to which players can connect to have a different profile.",
url = "https://github.com/MCMDEV/hostprofiles",
authors = "MCMDEV"
Expand Down Expand Up @@ -67,6 +67,7 @@ public Configuration loadFile(String name) {
if (!Files.exists(path)) {
try {
InputStream resourceAsStream = getClass().getResourceAsStream("/" + name);
Files.createDirectories(path.getParent());
Files.copy(resourceAsStream, path);
} catch (IOException e) {
e.printStackTrace();
Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
<groupId>de.mcmdev</groupId>
<artifactId>hostprofiles</artifactId>
<packaging>pom</packaging>
<version>0.1.2</version>
<version>0.1.3-SNAPSHOT</version>
<modules>
<module>hostprofiles-common</module>
<module>hostprofiles-bukkit</module>
<module>hostprofiles-paper</module>
<module>hostprofiles-velocity</module>
</modules>
Expand Down

0 comments on commit e59ddd4

Please sign in to comment.