Skip to content

Commit

Permalink
Update build script version to 1688526754 (#1903)
Browse files Browse the repository at this point in the history
Co-authored-by: serenibyss <[email protected]>
  • Loading branch information
serenibyss and serenibyss authored Jul 5, 2023
1 parent 30726a5 commit 6ef3688
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//version: 1687160402
//version: 1688526754
/*
* DO NOT CHANGE THIS FILE!
* Also, you may replace this file at any time if there is an update available.
Expand Down Expand Up @@ -339,6 +339,7 @@ repositories {
maven {
name = 'Curse Maven'
url = 'https://www.cursemaven.com'
// url = 'https://beta.cursemaven.com'
}
}
filter {
Expand Down Expand Up @@ -401,10 +402,13 @@ configurations {
dependencies {
if (usesMixins.toBoolean() || forceEnableMixins.toBoolean()) {
implementation 'zone.rong:mixinbooter:7.0'
api('org.spongepowered:mixin:0.8.3') {
String mixin = modUtils.enableMixins('org.spongepowered:mixin:0.8.3', "mixins.${modId}.refmap.json")

api (mixin) {
transitive = false
}
annotationProcessor('org.spongepowered:mixin:0.8.3') {

annotationProcessor(mixin) {
transitive = false
}

Expand Down

0 comments on commit 6ef3688

Please sign in to comment.