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

Commit

Permalink
Update to Alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
erha134 committed Aug 20, 2023
1 parent 437a6e9 commit f07da93
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 40 deletions.
44 changes: 6 additions & 38 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,43 +8,6 @@ plugins {
id "io.github.pacifistmc.forgix" version "1.2.6" // Merge Fabric and Forge Jar
}

repositories {
maven { url = "https://maven.neoforged.net/releases/" }
maven { url = "https://maven.shedaniel.me/" } // Cloth Config, REI
maven {// saps.dev Maven (KubeJS and Rhino)
url = "https://maven.saps.dev/minecraft"
}
maven { url = "https://api.modrinth.com/maven" } // LazyDFU
maven { url = "https://cursemaven.com/" } // Forge Config API Port
maven { url = "https://modmaven.dev/" }
maven { url = "https://maven.blamejared.com/" } // JEI
maven { url = "https://dvs1.progwml6.com/files/maven/" } // JEI
maven { url = "https://maven.parchmentmc.org/" } // Parchment mappings
maven { url = "https://maven.quiltmc.org/repository/release/" } // Quilt Mappings
maven { url = "https://maven.terraformersmc.com/" } // Mod Menu
maven { url = 'https://maven.ladysnake.org/releases/' }
maven {
name = 'GeckoLib'
url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/'
}
maven {
name = "SmartBrainLib (SBL) Maven Repo"
url = "https://dl.cloudsmith.io/public/tslat/sbl/maven/"
}
maven { url = "https://maven.cafeteria.dev/releases" } // Fake Player API
maven { url = "https://maven.jamieswhiteshirt.com/libs-release" } // Reach Entity Attributes
maven { url = "https://maven.theillusivec4.top/" } // Curios
maven {
name = "Fuzs Mod Resources"
url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/"
}
maven { url = "https://mvn.devos.one/snapshots/" }
maven { url = "https://jitpack.io/" } // Mixin Extras, Fabric ASM
mavenCentral()
maven { url = "https://maven.fastmirror.net/" }
maven { url = "https://repository.hanbings.io/proxy/" }
}

architectury {
minecraft = rootProject.minecraft_version
}
Expand All @@ -68,11 +31,16 @@ subprojects {
maven { url = "https://cursemaven.com/" } // Forge Config API Port
maven { url = "https://modmaven.dev/" }
maven { url = "https://maven.blamejared.com/" } // JEI
maven { url = "https://dvs1.progwml6.com/files/maven/" } // JEI
//maven { url = "https://dvs1.progwml6.com/files/maven/" } // JEI
maven { url = "https://maven.parchmentmc.org/" } // Parchment mappings
maven { url = "https://maven.quiltmc.org/repository/release/" } // Quilt Mappings
maven { url = "https://maven.terraformersmc.com/" } // Mod Menu
maven { url = 'https://maven.ladysnake.org/releases/' }
maven {
// Location of the maven that hosts Mine and Team Resourceful's files.
name = "Resourceful Bees Maven"
url = "https://maven.resourcefulbees.com/repository/maven-public/"
}
maven {
name = 'GeckoLib'
url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/'
Expand Down
4 changes: 4 additions & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ dependencies {
// Remove the next line if you don't want to depend on the API
modApi "dev.architectury:architectury:${architectury_version}"

modImplementation "earth.terrarium:botarium-common-${rootProject.minecraft_version}:${botarium_version}"

// Impl
// JEI
modCompileOnly "mezz.jei:jei-${rootProject.minecraft_version}-common-api:${jei_version}"
Expand Down Expand Up @@ -64,6 +66,8 @@ dependencies {
modCompileOnly("com.github.Fallen-Breath:conditional-mixin:${coditionalmixin_version}") {
exclude module: "fabric-loader"
}
// fix nullable imports
implementation "com.google.code.findbugs:jsr305:${jsr305_version}"
}

publishing {
Expand Down
5 changes: 5 additions & 0 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ dependencies {
// Remove the next line if you don't want to depend on the API
modApi "dev.architectury:architectury-fabric:${architectury_version}"

modApi "earth.terrarium:botarium-fabric-${rootProject.minecraft_version}:${botarium_version}"

// Development QOL
modLocalRuntime "maven.modrinth:lazydfu:${lazydfu_version}"
modImplementation("com.terraformersmc:modmenu:${modmenu_version}")
Expand Down Expand Up @@ -105,6 +107,9 @@ dependencies {
modApi(include("com.github.Fallen-Breath:conditional-mixin:${coditionalmixin_version}")) {
exclude module: "fabric-loader"
}

// fix nullable imports
implementation(include("com.google.code.findbugs:jsr305:${jsr305_version}"))
}

processResources {
Expand Down
1 change: 1 addition & 0 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
},
"suggests": {
"modmenu": "*",
"botarium": "*",
"trinkets": "*",
"create": "*"
}
Expand Down
6 changes: 5 additions & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ loom {
runs {
data {
data()
programArgs "--all", "--mod", "easiertravelcraft"
programArgs "--all", "--mod", "mrscrafttown"
programArgs "--output", generatedResources.absolutePath
}
}
Expand All @@ -41,6 +41,8 @@ dependencies {
// Remove the next line if you don't want to depend on the API
modApi "dev.architectury:architectury-forge:${architectury_version}"

modApi "earth.terrarium:botarium-forge-${rootProject.minecraft_version}:${botarium_version}"

common(project(path: ":common", configuration: "namedElements")) { transitive = false }
shadowCommon(project(path: ":common", configuration: "transformProductionForge")) { transitive = false }

Expand Down Expand Up @@ -84,6 +86,8 @@ dependencies {
api(include("com.github.Fallen-Breath:conditional-mixin:${coditionalmixin_version}")) {
exclude module: "fabric-loader"
}
// fix nullable imports
implementation(include("com.google.code.findbugs:jsr305:${jsr305_version}"))
}

processResources {
Expand Down
6 changes: 5 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx2G
# Mod Info
archives_base_name = MrsCraftTown
modid = mrscrafttown
mod_version = 1.0.0-alpha.2d-fix1
mod_version = 1.0.0-alpha.3
maven_group = cn.mrcraftteammc.mrscrafttown

mod_name = MrsCraftTown
Expand All @@ -26,6 +26,8 @@ forge_version = 47.1.65
# Development QOL
# Coditional Mixin
coditionalmixin_version = v0.3.2
# jsr305
jsr305_version = 3.0.2

# Mod Impl
# 1.1.57 - 1.1.58
Expand All @@ -35,6 +37,8 @@ architectury_version = 9.1.12
cloth_config_version = 11.1.106
# Midnight Lib
midnightlib_version = 1.4.1
# Botarium
botarium_version = 2.2.0
# Curios API
curios_version = 5.2.0-beta.3+1.20.1
caelus_version = 3.1.0+1.20
Expand Down

0 comments on commit f07da93

Please sign in to comment.