├── .editorconfig ├── .github └── workflows │ ├── build-workflow.yml │ ├── create-version.yml │ ├── pr-workflow.yml │ └── publish-workflow.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── gradle-daemon-jvm.properties ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src └── main ├── kotlin └── org │ └── simplemc │ └── plugintemplate │ └── KotlinPluginTemplate.kt └── resources ├── config.yml └── plugin.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/.github/workflows/build-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/create-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/.github/workflows/create-version.yml -------------------------------------------------------------------------------- /.github/workflows/pr-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/.github/workflows/pr-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/publish-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/.github/workflows/publish-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /gradle/gradle-daemon-jvm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/gradle/gradle-daemon-jvm.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/kotlin/org/simplemc/plugintemplate/KotlinPluginTemplate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/src/main/kotlin/org/simplemc/plugintemplate/KotlinPluginTemplate.kt -------------------------------------------------------------------------------- /src/main/resources/config.yml: -------------------------------------------------------------------------------- 1 | someconfig: true 2 | -------------------------------------------------------------------------------- /src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMC/mc-kotlin-plugin-template/HEAD/src/main/resources/plugin.yml --------------------------------------------------------------------------------