update github action to the new setup

This commit is contained in:
MiniDigger 2021-06-14 00:45:42 +02:00
parent ab709d8405
commit 5cdbd0064b
3 changed files with 7 additions and 8 deletions

View File

@ -26,14 +26,14 @@ jobs:
uses: actions/cache@v2
with:
path: |
~/.m2/repository/
work/Minecraft
key: ${{ runner.os }}-paper-2-${{ hashFiles('**/pom.xml') }}
~/.gradle/caches
~/.gradle/jdks
~/.gradle/native
~/.gradle/wrapper
key: ${{ runner.os }}-paper-2-${{ hashFiles('**/*.gradle*', 'gradle/**', 'gradle.properties') }}
restore-keys: ${{ runner.os }}-paper-2
- name: Patch and build
run: |
git config --global user.email "no-reply@github.com"
git config --global user.name "Github Actions"
./paper build
- name: Build javadocs
run: mvn -pl Paper-API,Paper-MojangAPI -am javadoc:javadoc
./gradlew applyPatches build

View File

@ -1,7 +1,7 @@
plugins {
java
id("com.github.johnrengelman.shadow") version "7.0.0" apply false
id("io.papermc.paperweight.core") version "1.0.0-LOCAL-SNAPSHOT"
id("io.papermc.paperweight.core") version "1.0.0-SNAPSHOT"
}
val mcVersion = providers.gradleProperty("mcVersion")

View File

@ -1,6 +1,5 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
maven("https://wav.jfrog.io/artifactory/repo/")
}