Skip to content

Commit

Permalink
build: use extra-local-mods from mods-meta
Browse files Browse the repository at this point in the history
Adding local runtime deps now easy
  • Loading branch information
desht committed Apr 4, 2023
1 parent 4809caf commit 5cbc516
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ logs
# other
eclipse
run
.architectury-transformer/
.architectury-transformer/
**/extra-mods-*
2 changes: 2 additions & 0 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ dependencies {
shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false }
}

apply from: "https://raw.githubusercontent.com/FTBTeam/mods-meta/main/gradle/extra-local-mods.gradle"

processResources {
inputs.property "version", project.version

Expand Down
8 changes: 8 additions & 0 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ repositories {
// includeGroup "team.chisel.ctm"
}
}
maven {
url "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
}
}
}

dependencies {
Expand All @@ -54,6 +60,8 @@ dependencies {
shadowCommon(project(path: ":common", configuration: "transformProductionForge")) { transitive false }
}

apply from: "https://raw.githubusercontent.com/FTBTeam/mods-meta/main/gradle/extra-local-mods.gradle"

processResources {
inputs.property "version", project.version

Expand Down

0 comments on commit 5cbc516

Please sign in to comment.