Add a minimal, ready-to-use Hytale plugin template including Gradle build scripts, GitHub Actions CI workflow, example plugin class, configuration and manifest files, and supporting documentation. This setup provides modern build tooling, automated server testing, and best practices for plugin development.
11 lines
280 B
Properties
11 lines
280 B
Properties
# Project Information
|
|
pluginGroup=com.example
|
|
pluginVersion=1.0.0
|
|
pluginDescription=A Hytale plugin template with best practices
|
|
|
|
# Gradle Configuration
|
|
org.gradle.parallel=true
|
|
org.gradle.caching=true
|
|
org.gradle.daemon=true
|
|
org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
|