Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update loom #1060

Merged
merged 4 commits into from
Sep 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: eskatos/gradle-command-action@v1.3.2
with:
gradle-version: wrapper
arguments: check build publishToMavenLocal --stacktrace
arguments: check build publishToMavenLocal --stacktrace --parallel
dependencies-cache-enabled: false
configuration-cache-enabled: false
- uses: actions/upload-artifact@v2
Expand Down
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
id 'eclipse'
id 'idea'
id 'maven-publish'
id 'fabric-loom' version '0.4.28' apply false
id 'fabric-loom' version '0.5.25' apply false
id 'net.minecrell.licenser' version '0.4.1'
id "org.ajoberstar.grgit" version "3.1.1"
id 'com.matthewprenger.cursegradle' version "1.4.0"
Expand Down Expand Up @@ -80,6 +80,10 @@ allprojects {
dev
}

loom {
shareCaches = true
}

repositories {
mavenLocal()
}
Expand Down
4 changes: 0 additions & 4 deletions fabric-game-rule-api-v1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ minecraft {
}

dependencies {
// MUST BE A DEPENDENCY, OTHERWISE COMPILE WILL FAIL IN "RuleListWidgetMixin"
// YOU'VE BEEN WARNED
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'

testmodCompile project(path: ':fabric-api-base', configuration: 'dev')
testmodCompile project(path: ':fabric-lifecycle-events-v1', configuration: 'dev')
testmodCompile project(path: ':fabric-resource-loader-v0', configuration: 'dev')
Expand Down