-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from TechnicJelle/big-refactor
- Loading branch information
Showing
32 changed files
with
1,097 additions
and
408 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,28 +1,25 @@ | ||
# This workflow will build a Java project with Maven | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
|
||
name: Java CI with Maven | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3.3.0 | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3.9.0 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
- name: Build with Maven | ||
run: mvn -B package --file pom.xml | ||
- name: Upload a Build Artifact | ||
uses: actions/upload-artifact@v3.1.2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
# A file, directory or wildcard pattern that describes what to upload | ||
path: /home/runner/work/BlueMapOfflinePlayerMarkers/BlueMapOfflinePlayerMarkers/target/* | ||
path: | | ||
target/*.jar | ||
!target/original-*.jar |
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 |
---|---|---|
|
@@ -114,3 +114,6 @@ run/ | |
|
||
# Minecraft server for testing | ||
testserver/ | ||
|
||
# Player Name Caches | ||
cachedPlayerNames.json |
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
88 changes: 0 additions & 88 deletions
88
src/main/java/com/technicjelle/bluemapofflineplayermarkers/BlueMapOfflinePlayerMarkers.java
This file was deleted.
Oops, something went wrong.
57 changes: 0 additions & 57 deletions
57
src/main/java/com/technicjelle/bluemapofflineplayermarkers/Config.java
This file was deleted.
Oops, something went wrong.
191 changes: 0 additions & 191 deletions
191
src/main/java/com/technicjelle/bluemapofflineplayermarkers/MarkerHandler.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.