Skip to content

Commit

Permalink
Merge pull request #39 from TechnicJelle/big-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle authored Mar 17, 2024
2 parents 85193f6 + 7b17636 commit 0ae78d4
Show file tree
Hide file tree
Showing 32 changed files with 1,097 additions and 408 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/maven.yml
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,6 @@ run/

# Minecraft server for testing
testserver/

# Player Name Caches
cachedPlayerNames.json
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.technicjelle</groupId>
<artifactId>BlueMapOfflinePlayerMarkers</artifactId>
<version>2.9</version>
<version>3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>BlueMapOfflinePlayerMarkers</name>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 0ae78d4

Please sign in to comment.