Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Bump version to 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Earthcomputer committed Jun 26, 2020
1 parent 12cb4a9 commit 94829a3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
21 changes: 15 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,22 @@ dependencies {
testCompile "com.github.Earthcomputer:fabric-loader:${project.loader_version}"
sourceSets.api.compileClasspath += files({sourceSets.main.compileClasspath.toList()})

modCompileOnly("net.fabricmc.fabric-api:fabric-resource-loader-v0:${project.resource_loader_version}") {
transitive = false // to stop it using its own fabric-loader
}
modRuntime("net.fabricmc.fabric-api:fabric-resource-loader-v0:${project.resource_loader_version}") {
transitive = false // to stop it using its own fabric-loader
if (true) {
modCompileOnly("net.fabricmc.fabric-api:fabric-resource-loader-v0:${project.resource_loader_version}") {
transitive = false // to stop it using its own fabric-loader
}
modRuntime("net.fabricmc.fabric-api:fabric-resource-loader-v0:${project.resource_loader_version}") {
transitive = false // to stop it using its own fabric-loader
}
include "net.fabricmc.fabric-api:fabric-resource-loader-v0:${project.resource_loader_version}"
} else {
modCompileOnly("net.fabricmc.fabric-api:fabric-api:0.14.0+build.371-1.16") {
exclude group: 'net.fabricmc', module: 'fabric-loader'
}
modRuntime("net.fabricmc.fabric-api:fabric-api:0.14.0+build.371-1.16") {
exclude group: 'net.fabricmc', module: 'fabric-loader'
}
}
include "net.fabricmc.fabric-api:fabric-resource-loader-v0:${project.resource_loader_version}"

compile sourceSets.api.output
include files(remapApiJar.archivePath)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=a91e71a7

# Mod Properties
mod_version = 1.3.2
mod_version = 1.3.3
maven_group = net.earthcomputer
archives_base_name = multiconnect

Expand Down

0 comments on commit 94829a3

Please sign in to comment.