Skip to content

Commit

Permalink
Add dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Johann Bernhardt committed Dec 1, 2021
1 parent 6663d0b commit c0ca524
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 2 deletions.
47 changes: 47 additions & 0 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,52 @@
// Add your dependencies here

dependencies {
compileOnly("com.github.GTNewHorizons:CodeChickenLib:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:NotEnoughItems:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:ForgeMultipart:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:GT5-Unofficial:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:inventory-tweaks:master-SNAPSHOT:api") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:waila:master-SNAPSHOT:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:Railcraft:master-SNAPSHOT:dev") {
transitive = false
}

compileOnly("com.mod-buildcraft:buildcraft:7.1.23:dev") {
transitive = false
}
compileOnly("curse.maven:cofh-core-69162:2388751") {
transitive = false
}
compileOnly("net.industrial-craft:industrialcraft-2:2.2.828-experimental:api") {
transitive = false
}
compileOnly("curse.maven:minefactory-reloaded-66672:2366150") {
transitive = false
}
compileOnly("li.cil.oc:OpenComputers:MC1.7.10-1.7.5.1356:dev") {
transitive = false
}
compileOnly("pneumaticCraft:PneumaticCraft-1.7.10:1.12.7-152:api") {
transitive = false
}
compileOnly("curse.maven:better-storage-232919:2731636") {
transitive = false
}
compileOnly("api:immibis:1") {
transitive = false
}

testCompile("junit:junit:4.12")
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ mixinsPackage =
# Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin!
# This parameter is for legacy compatability only
# Example value: coreModClass = asm.FMLPlugin + modGroup = com.myname.mymodid -> com.myname.mymodid.asm.FMLPlugin
coreModClass =
coreModClass = transformer.AppEngCore
# If your project is only a consolidation of mixins or a core mod and does NOT contain a 'normal' mod ( = some class
# that is annotated with @Mod) you want this to be true. When in doubt: leave it on false!
containsMixinsAndOrCoreModOnly = false
Expand Down
28 changes: 27 additions & 1 deletion repositories.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
// Add any additional repositories for your dependencies here

repositories {

maven {
name = "ic2"
url = "https://maven.ic2.player.to/"
metadataSources {
mavenPom()
artifact()
}
}
maven {
name = "MM repo"
url = "http://maven.k-4u.nl/"
}
maven {
name "OpenComputers Repo"
url = "http://maven.cil.li/"
metadataSources {
mavenPom()
artifact()
}
}
maven {
url "https://cursemaven.com"
}
maven {
name = "jitpack.io"
url = "https://jitpack.io"
}
}

0 comments on commit c0ca524

Please sign in to comment.