Skip to content

Instantly share code, notes, and snippets.

@matthewprenger
Last active June 18, 2022 18:01
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save matthewprenger/2772a516fae6069d6bb4 to your computer and use it in GitHub Desktop.
Save matthewprenger/2772a516fae6069d6bb4 to your computer and use it in GitHub Desktop.
CoFH CurseForge Dependencies
// The URL for each mod often changes based on the version you want.
// To find the correct URL, download the (DEOBFUSCATED!) mod from CurseForge,
// and look in your browser's download history to find the URL it came from.
// Use the numbers from that in place of the ones below
repositories {
ivy {
name "CoFHLib"
artifactPattern "http://addons-origin.cursecdn.com/files/2229/525/[module]-[revision].[ext]"
}
ivy {
name "CoFHCore"
artifactPattern 'http://addons-origin.cursecdn.com/files/2229/536/[module]-[revision].[ext]'
}
ivy {
name "RedstoneArsenal"
artifactPattern "http://addons-origin.cursecdn.com/files/2229/530/[module]-[revision].[ext]"
}
ivy {
name "ThermalExpansion"
artifactPattern "http://addons-origin.cursecdn.com/files/2229/552/[module]-[revision].[ext]"
}
ivy {
name "ThermalFoundation"
artifactPattern "http://addons-origin.cursecdn.com/files/2229/339/[module]-[revision].[ext]"
}
ivy {
name "ThermalDynamics"
artifactPattern "http://addons-origin.cursecdn.com/files/2229/532/[module]-[revision].[ext]"
}
}
dependencies {
compile group: 'cofh', name: 'CoFHLib', version: '[1.7.10]1.0.0RC5-123-dev', ext: 'jar'
compile group: 'cofh', name: 'CoFHCore', version: '[1.7.10]3.0.0RC5-207-dev', ext: 'jar'
compile group: 'cofh', name: 'RedstoneArsenal', version: '[1.7.10]1.1.0RC4-54-dev', ext: 'jar'
compile group: 'cofh', name: 'ThermalExpansion', version: '[1.7.10]4.0.0RC6-138-dev', ext: 'jar'
compile group: 'cofh', name: 'ThermalFoundation', version: '[1.7.10]1.0.0RC4-58-dev', ext: 'jar'
compile group: 'cofh', name: 'ThermalDynamics', version: '[1.7.10]1.0.0RC5-94-dev', ext: 'jar'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment