
The curseforge maven is broken
Derailedzack opened this issue ยท 9 comments
Both curseforge maven and mavenforge are completely broken. I've never had curseforge maven repos work.https://maven.minecraftforge.net/artemislib/ArtemisLib/1.13.2/ArtemisLib-1.13.2-v1.0.3.jar. This link gives a 404. This is not a new problem at least for me anyway. I've had the exact same problem with a different mod (Obfuscate).
Could not resolve all files for configuration ':runtimeClasspathCopy'.
> Could not find curse.maven:artlib-313590:ArtemisLib.
Searched in the following locations:
- https://www.cursemaven.com/curse/maven/artlib-313590/ArtemisLib/artlib-313590-ArtemisLib.pom
- https://maven.minecraftforge.net/curse/maven/artlib-313590/ArtemisLib/artlib-313590-ArtemisLib.module
- https://maven.minecraftforge.net/curse/maven/artlib-313590/ArtemisLib/artlib-313590-ArtemisLib.pom
- https://maven.minecraftforge.net/curse/maven/artlib-313590/ArtemisLib/artlib-313590-ArtemisLib-2675581.jar
- file:/home/shadowfoxy32/.gradle/caches/forge_gradle/bundeled_repo/curse/maven/artlib-313590/ArtemisLib/artlib-313590-ArtemisLib.pom
- file:/home/shadowfoxy32/.gradle/caches/forge_gradle/bundeled_repo/curse/maven/artlib-313590/ArtemisLib/artlib-313590-ArtemisLib-2675581.jar
- https://libraries.minecraft.net/curse/maven/artlib-313590/ArtemisLib/artlib-313590-ArtemisLib-2675581.jar
- https://repo.maven.apache.org/maven2/curse/maven/artlib-313590/ArtemisLib/artlib-313590-ArtemisLib.pom
Required by:
project :
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
For now I will just put the jar in the libs folder instead of using the maven repo.
Might Try cursemaven
maven { url "https://www.cursemaven.com" }
then add
deobfCompile "curse.maven:PROJECTNAME-PROJECTID:FILEID"
otherwise, you'd be better off just grabbing a jar, adding it to your workspace, and then grab a copy of the source for the version you want off github and add the source to the jar in your IDE
https://www.cursemaven.com/
import jdk.internal.dynalink.linker.LinkerServices
buildscript {
repositories {
// These repositories are only for Gradle plugins, put any other repositories in the repository block further below
maven { url = 'https://maven.minecraftforge.net' }
maven { url = "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
} }
mavenCentral()
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
}
}
apply plugin: 'net.minecraftforge.gradle'
group = 'io.github.shadowfoxy32'
version = '1.0-SNAPSHOT'
java {
archivesBaseName = 'challengesize'
toolchain.languageVersion = JavaLanguageVersion.of(8)
}
minecraft {
// The mappings can be changed at any time and must be in the following format.
// Channel: Version:
// snapshot YYYYMMDD Snapshot are built nightly.
// stable # Stables are built at the discretion of the MCP team.
// official MCVersion Official field/method names from Mojang mapping files
//
// You must be aware of the Mojang license when using the 'official' mappings.
// See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md
//
// Use non-default mappings at your own risk. They may not always work.
// Simply re-run your setup task after changing the mappings to update your workspace.
mappings channel: 'stable', version: '47-1.13.2'
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
// Default run configurations.
// These can be tweaked, removed, or duplicated as needed.
runs {
client {
workingDirectory project.file('run')
// Recommended logging data for a userdev environment
// The markers can be added/removed as needed separated by commas.
// "SCAN": For mods scan.
// "REGISTRIES": For firing of registry events.
// "REGISTRYDUMP": For getting the contents of all registries.
property 'forge.logging.markers', 'REGISTRIES'
// Recommended logging level for the console
// You can set various levels here.
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
property 'forge.logging.console.level', 'debug'
mods {
challengesize {
source sourceSets.main
}
}
}
server {
workingDirectory project.file('run')
// Recommended logging data for a userdev environment
// The markers can be added/removed as needed separated by commas.
// "SCAN": For mods scan.
// "REGISTRIES": For firing of registry events.
// "REGISTRYDUMP": For getting the contents of all registries.
property 'forge.logging.markers', 'REGISTRIES'
// Recommended logging level for the console
// You can set various levels here.
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
property 'forge.logging.console.level', 'debug'
mods {
challengesize {
source sourceSets.main
}
}
}
data {
workingDirectory project.file('run')
// Recommended logging data for a userdev environment
// The markers can be added/removed as needed separated by commas.
// "SCAN": For mods scan.
// "REGISTRIES": For firing of registry events.
// "REGISTRYDUMP": For getting the contents of all registries.
property 'forge.logging.markers', 'REGISTRIES'
// Recommended logging level for the console
// You can set various levels here.
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
property 'forge.logging.console.level', 'debug'
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
args '--mod', 'challengesize', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
mods {
challengesize {
source sourceSets.main
}
}
}
}
}
// Include resources generated by data generators.
sourceSets.main.resources { srcDir 'src/generated/resources' }
repositories {
// Put repositories for dependencies here
// ForgeGradle automatically adds the Forge maven and Maven Central for you
// If you have mod jar dependencies in ./libs, you can declare them as a repository like so:
// flatDir {
// dir 'libs'
// }
maven { url = "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
} }
}
dependencies {
// Specify the version of Minecraft to use. If this is any group other than 'net.minecraft' it is assumed
// that the dep is a ForgeGradle 'patcher' dependency, and its patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft 'net.minecraftforge:forge:1.13.2-25.0.219'
implementation 'curse.maven:artlib-313590:ArtemisLib:2675581'
// Real mod deobf dependency examples - these get remapped to your current mappings
// compileOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}:api") // Adds JEI API as a compile dependency
// runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}") // Adds the full JEI mod as a runtime dependency
// implementation fg.deobf("com.tterrag.registrate:Registrate:MC${mc_version}-${registrate_version}") // Adds registrate as a dependency
// Examples using mod jars from ./libs
// implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}")
// For more info...
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html
}
// Example for how to get properties into the manifest for reading at runtime.
jar {
manifest {
attributes([
"Specification-Title" : "challengesize",
//"Specification-Vendor": "challengesize authors",
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : project.jar.archiveVersion,
//"Implementation-Vendor": "challengesize authors",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
}
jar.finalizedBy('reobfJar')
CF is doing a lot of backend changes, which is breaking a lot of things. A support ticket will do nothing.
My advice? Don't use 1.13. Even when it was new, it had next to no support on account of having awful performance. Come give Fabric a try. Pehkui is infinitely better than ArtemisLib for changing entity sizes anyways. It also uses an actual maven instead of a hack.
Bonus of using newer versions and Fabric? Modding isn't as much of a nightmare.