Skip to content

Commit

Permalink
Add CCL dep to publishing metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
covers1624 committed Mar 2, 2024
1 parent 3e81f05 commit fc7564e
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sourceSets.main.resources.srcDirs += "src/main/generated"
mod_version = "${mod_version}." + (System.getenv("BUILD_NUMBER") ?: "1")
version = "${mc_version}-${mod_version}"
println "Starting build of ${archivesBaseName}, Version: ${mod_version}"
println "Using Forge: ${forge_version}, for Minecraft: ${mc_version}"
println "Using NeoForge: ${forge_version}, for Minecraft: ${mc_version}"

minecraft {
mappings channel: 'official', version: mc_version
Expand Down Expand Up @@ -83,7 +83,15 @@ def publishingMetadataTask = tasks.register("publishingMetadata") {
'classifier' : 'universal',
'modLoader' : 'neoforge',
'curseforgeId': '245174',
'modrinthId' : 'BbrHg80P'
'modrinthId' : 'BbrHg80P',
'dependencies': [
[
'modId' : 'codechickenlib',
'type' : 'required',
'modrinthId' : '242818',
'curseforgeId': '2gq0ALnz'
]
]
]
]))
}
Expand Down Expand Up @@ -166,17 +174,16 @@ publishing {
pom {
name = archivesBaseName
description = archivesBaseName
//The publish plugin doesnt like GString's here apparently..
url = "https://github.com/TheCBProject/${archivesBaseName}".toString()
url = "https://github.com/TheCBProject/${archivesBaseName}"
scm {
url = "https://github.com/TheCBProject/${archivesBaseName}".toString()
connection = "scm:git:git://github.com/TheCBProject/${archivesBaseName}.git".toString()
connection = "scm:git:[email protected]:TheCBProject/${archivesBaseName}.git".toString()
url = "https://github.com/TheCBProject/${archivesBaseName}"
connection = "scm:git:git://github.com/TheCBProject/${archivesBaseName}.git"
connection = "scm:git:[email protected]:TheCBProject/${archivesBaseName}.git"
}

issueManagement {
system = 'github'
url = "https://github.com/TheCBProject/${archivesBaseName}/issues".toString()
url = "https://github.com/TheCBProject/${archivesBaseName}/issues"
}
licenses {
license {
Expand Down

0 comments on commit fc7564e

Please sign in to comment.