generated from SimpleMC/mc-kotlin-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace template with SimplePlayerPortals
- Loading branch information
Showing
7 changed files
with
15 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
# mc-kotlin-plugin-template | ||
Opinionated template/starter for creating Minecraft plugins in Kotlin using the Spigot API | ||
# SimplePlayerPortals | ||
Simple yet flexible Bukkit/Spigot plugin for player-built portals in Minecraft | ||
|
||
## Features | ||
|
||
- Gradle axion-release-plugin for managing semver | ||
- automatic updating of `CHANGELOG.md` and `main/resources/plugin.yml` when a release is made | ||
- Github Actions to build PRs and automatically create Github releases when a release tag is pushed | ||
- [`ktlint`](https://github.com/JLLeitschuh/ktlint-gradle) Gradle plugin | ||
- Gradle build generates a standard plugin jar which will download dependencies declared as | ||
[`libraries`](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/plugin/PluginDescriptionFile.html#getLibraries()) in | ||
`plugin.yml` and an "offline"/shadowed jar containing necessary dependencies | ||
- Easy-to-use configurable player created portals | ||
- Named portal "channels" to link portals together |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ pluginManagement { | |
} | ||
} | ||
|
||
rootProject.name = "mc-kotlin-plugin-template" | ||
rootProject.name = "simple-player-portals" |
4 changes: 2 additions & 2 deletions
4
...mc/plugintemplate/KotlinPluginTemplate.kt → ...impleplayerportals/SimplePlayerPortals.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
name: KotlinPluginTemplate | ||
main: org.simplemc.plugintemplate.KotlinPluginTemplate | ||
name: SimplePlayerPortals | ||
main: org.simplemc.simpleplayerportals.SimplePlayerPortals | ||
version: "${version}" | ||
api-version: "${apiVersion}" | ||
website: https://github.com/SimpleMC/mc-kotlin-plugin-template | ||
website: https://github.com/SimpleMC/SimplePlayerPortals | ||
author: tajobe | ||
libraries: | ||
- org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlinVersion} |