-
-
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.
feat: updates & comply with simplecoreapi 0.8.0 (#52)
- Loading branch information
Showing
6 changed files
with
54 additions
and
32 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 |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
steps: | ||
# Checkout the Code | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
# Set up git hashes environment variables | ||
- name: Git Hashes | ||
uses: Im-Fran/[email protected] | ||
|
@@ -52,7 +52,7 @@ jobs: | |
args: ./build/libs/${{ env.PROJECT_NAME }}-${{ env.VERSION }}.jar application/java-archive | ||
# Now we deploy the documents to GitHub pages | ||
- name: Deploy Dokka | ||
uses: JamesIves/[email protected].1 | ||
uses: JamesIves/[email protected].3 | ||
with: | ||
branch: gh-pages | ||
folder: build/dokka | ||
|
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
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,22 @@ | ||
package xyz.theprogramsrc.loggingmodule | ||
|
||
import xyz.theprogramsrc.simplecoreapi.global.module.Module | ||
import xyz.theprogramsrc.simplecoreapi.global.models.module.Module | ||
import xyz.theprogramsrc.simplecoreapi.global.models.module.ModuleDescription | ||
|
||
class Main: Module() | ||
class FilesModule: Module { | ||
|
||
override val description: ModuleDescription = | ||
ModuleDescription( | ||
name = "@name@", | ||
version = "@version@", | ||
authors = listOf("Im-Fran") | ||
) | ||
|
||
override fun onEnable() { | ||
// Do nothing | ||
} | ||
|
||
override fun onDisable() { | ||
// Do nothing | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.