Skip to content

Commit

Permalink
added hotfix branch for bukkit 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
eric2788 committed Aug 3, 2023
1 parent 9c7feee commit 1af91b8
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 4 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/temp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

name: Publish WorkFlows for ELDependenci feature/hotfix branch

on:
push:
branches:
- '*/*'
- '!master'
- '!develop'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
id: checkout-source
uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: '18'
distribution: 'adopt'
- run: mvn --batch-mode -Dmaven.deploy.skip=true -Dmaven.javadoc.skip=true clean package
name: build plugins
- uses: actions/upload-artifact@v1
name: 'upload plugins'
with:
name: 'plugins'
path: 'outputs/'
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
</repositories>

<properties>
<jackson.version>2.13.4</jackson.version>
<spigot.version>1.19-R0.1-SNAPSHOT</spigot.version>
<jackson.version>2.15.2</jackson.version>
<spigot.version>1.20-R0.1-SNAPSHOT</spigot.version>
<bungee.version>1.18-R0.1-SNAPSHOT</bungee.version>
<eld.plugin.version>2.0.2</eld.plugin.version>
<eld.plugin.version>2.0.2-1.20-alpha</eld.plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.31</version>
<version>2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 1af91b8

Please sign in to comment.