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!
version=0.0.2
version=0.0.1
# The group ID used for maven publishing. Usually the same as your package name
# 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
# 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.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.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
* event listeners.
*/
@SuppressWarnings("unused")
public class ExamplePlugin extends JavaPlugin {
private static final HytaleLogger LOGGER = HytaleLogger.forEnclosingClass();

View File

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