Skip to content

Commit

Permalink
chore: update porting lib (#15)
Browse files Browse the repository at this point in the history
- Removes unused modules
- Don't include porting lib to reduce jar size
- Update porting lib
  • Loading branch information
AlphaMode authored Dec 5, 2023
1 parent 755bafb commit 1d80b4d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies {
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}"

for (String module in project.porting_lib_modules.split(",")) {
modApi(include("io.github.fabricators_of_create.Porting-Lib:$module:${project.porting_lib_version}"))
modApi("io.github.fabricators_of_create.Porting-Lib:$module:${project.porting_lib_version}")
}
}

Expand All @@ -69,7 +69,12 @@ repositories {
maven { url = "https://jitpack.io" }
maven { url = "https://maven.shedaniel.me/" }
maven { url = "https://mvn.devos.one/snapshots/" }
maven { url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/" }
maven {
url "https://maven.jamieswhiteshirt.com/libs-release"
content {
includeGroup "com.jamieswhiteshirt"
}
}
}

processResources {
Expand Down
5 changes: 2 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ parchment_mappings=2023.08.20

# Dependencies
fabric_api_version=0.89.3+1.20.1
porting_lib_version=2.1.1087+1.20
porting_lib_modules=accessors,base,config,data,lazy_registration,utility
config_api_version=8.0.0
porting_lib_version=2.1.1163+1.20.1
porting_lib_modules=config,data,lazy_registration

# Publishing
curseforge_id=0
Expand Down

0 comments on commit 1d80b4d

Please sign in to comment.