We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4be2bf3 commit d745cfbCopy full SHA for d745cfb
.github/workflows/build.yml
@@ -0,0 +1,26 @@
1
+name: ProtocolLib full build lifecycle
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Setup java
13
+ uses: actions/setup-java@v2
14
+ with:
15
+ distribution: 'adopt'
16
+ java-version: '16'
17
+ check-latest: true
18
19
+ - name: Run maven build lifecycle
20
+ run: mvn --batch-mode clean test package
21
22
+ - name: Upload plugin file
23
+ uses: actions/upload-artifact@v2
24
25
+ name: ProtocolLib
26
+ path: target/ProtocolLib.jar
jitpack.yml
@@ -0,0 +1,2 @@
+before_install:
+ - sdk install java 16.0.1-adpt
0 commit comments