Updated Manifest and Package names

This commit is contained in:
2026-02-05 21:58:32 +01:00
parent 14012dbb2a
commit 6f20b8268b
4 changed files with 16 additions and 11 deletions

View File

@@ -1,9 +1,9 @@
# The current version of your project. Please use semantic versioning! # The current version of your project. Please use semantic versioning!
version=0.0.2 version=0.0.1
# The group ID used for maven publishing. Usually the same as your package name # The group ID used for maven publishing. Usually the same as your package name
# but not the same as your plugin group! # but not the same as your plugin group!
maven_group=org.example maven_group=org.KaiFlo
# The version of Java used by your plugin. The game is built on Java 21 but # The version of Java used by your plugin. The game is built on Java 21 but
# actually runs on Java 25. # actually runs on Java 25.

View File

@@ -1,4 +1,4 @@
package org.example.plugin; package org.KaiFlo.SolarCell;
import com.hypixel.hytale.protocol.GameMode; import com.hypixel.hytale.protocol.GameMode;
import com.hypixel.hytale.server.core.Message; import com.hypixel.hytale.server.core.Message;

View File

@@ -1,4 +1,4 @@
package org.example.plugin; package org.KaiFlo.SolarCell;
import com.hypixel.hytale.logger.HytaleLogger; import com.hypixel.hytale.logger.HytaleLogger;
import com.hypixel.hytale.server.core.plugin.JavaPlugin; import com.hypixel.hytale.server.core.plugin.JavaPlugin;
@@ -10,6 +10,8 @@ import javax.annotation.Nonnull;
* This class serves as the entrypoint for your plugin. Use the setup method to register into game registries or add * This class serves as the entrypoint for your plugin. Use the setup method to register into game registries or add
* event listeners. * event listeners.
*/ */
@SuppressWarnings("unused")
public class ExamplePlugin extends JavaPlugin { public class ExamplePlugin extends JavaPlugin {
private static final HytaleLogger LOGGER = HytaleLogger.forEnclosingClass(); private static final HytaleLogger LOGGER = HytaleLogger.forEnclosingClass();

View File

@@ -1,14 +1,17 @@
{ {
"Group": "Example", "Group": "KaiFlo",
"Name": "ExamplePlugin", "Name": "SolarCell",
"Version": "0.0.2", "Version": "0.0.1",
"Description": "An example plugin for HyTale!", "Description": "A Solar Cell Mod",
"Authors": [ "Authors": [
{ {
"Name": "It's you!" "Name": "Florian Greindl"
},
{
"Name": "Tim Kainz"
} }
], ],
"Website": "example.org", "Website": "https://github.com/KainTim/hytale-solar-cell-plugin",
"ServerVersion": "*", "ServerVersion": "*",
"Dependencies": { "Dependencies": {
@@ -17,6 +20,6 @@
}, },
"DisabledByDefault": false, "DisabledByDefault": false,
"Main": "org.example.plugin.ExamplePlugin", "Main": "org.KaiFlo.SolarCell.SolarCellPlugin",
"IncludesAssetPack": true "IncludesAssetPack": true
} }