Skip to content

Commit

Permalink
Update gradle script & bump the version to 1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
zcaliptium committed Feb 8, 2018
1 parent 1469726 commit a5aa65f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
29 changes: 27 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle.forge'
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.

version = "1.1"
version = "1.2"
group= "tws.zcaliptium.compositegear" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "CompositeGear-" + mcversion

Expand All @@ -34,14 +34,39 @@ minecraft {
}

repositories {
flatDir {
dirs 'libs'
}

maven {
name = "ic2"
url = "http://maven.ic2.player.to/"
}

maven {
name = "Modmuss50"
url = "http://maven.modmuss50.me/"
}

// JEI.
maven {
name = "Progwml6 maven"
url = "http://dvs1.progwml6.com/files/maven"
}

// JEI mirror.
maven {
name = "ModMaven"
url = "modmaven.k-4u.nl"
}
}

dependencies {
compile 'net.industrial-craft:industrialcraft-2:2.8.35-ex112:api'
compile 'net.industrial-craft:industrialcraft-2:2.8.35-ex112:api'
compile "TechReborn:TechReborn-${mcversion}:2.12.2.470:api"

deobfProvided "mezz.jei:jei_${mcversion}:${jei_version}:api"
runtime "mezz.jei:jei_${mcversion}:${jei_version}"
}

processResources
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
org.gradle.jvmargs=-Xmx3G
mcversion=1.12.2
forgeversion=14.23.2.2611
jei_version=4.8.5.138

0 comments on commit a5aa65f

Please sign in to comment.