mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-10 15:56:41 -04:00
update build scripts, mod dependencies
This commit is contained in:
parent
8155039146
commit
52bf04383e
20
build.gradle
20
build.gradle
@ -4,7 +4,7 @@ buildscript {
|
|||||||
jcenter()
|
jcenter()
|
||||||
maven {
|
maven {
|
||||||
name = "forge"
|
name = "forge"
|
||||||
url = "https://files.minecraftforge.net/maven"
|
url = "https://maven.minecraftforge.net/"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
@ -13,15 +13,15 @@ buildscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id "com.matthewprenger.cursegradle" version "1.0.9"
|
id "com.matthewprenger.cursegradle" version "1.4.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'scala'
|
apply plugin: 'scala'
|
||||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||||
apply plugin: 'maven-publish'
|
apply plugin: 'maven-publish'
|
||||||
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_7
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
targetCompatibility = JavaVersion.VERSION_1_7
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
|
||||||
file "build.properties" withReader {
|
file "build.properties" withReader {
|
||||||
def prop = new Properties()
|
def prop = new Properties()
|
||||||
@ -69,6 +69,10 @@ minecraft {
|
|||||||
repositories {
|
repositories {
|
||||||
maven { url "https://maven.cil.li/" }
|
maven { url "https://maven.cil.li/" }
|
||||||
maven { url "https://minecraft.curseforge.com/api/maven/" }
|
maven { url "https://minecraft.curseforge.com/api/maven/" }
|
||||||
|
ivy {
|
||||||
|
name 'asie dependency mirror'
|
||||||
|
artifactPattern "http://asie.pl/javadeps/[module]-[revision](-[classifier]).[ext]"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
@ -77,7 +81,7 @@ configurations {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
deobfCompile ("li.cil.tis3d:TIS-3D:MC1.12-${config.tis3d.version}") {
|
deobfCompile ("li.cil.tis3d:TIS-3D:${config.tis3d.version}") {
|
||||||
exclude module: "jei_1.12"
|
exclude module: "jei_1.12"
|
||||||
}
|
}
|
||||||
deobfCompile "com.mod-buildcraft:buildcraft-api:${config.buildcraft.version}"
|
deobfCompile "com.mod-buildcraft:buildcraft-api:${config.buildcraft.version}"
|
||||||
@ -87,10 +91,11 @@ dependencies {
|
|||||||
}
|
}
|
||||||
deobfCompile "net.industrial-craft:industrialcraft-2:${config.ic2.version}"
|
deobfCompile "net.industrial-craft:industrialcraft-2:${config.ic2.version}"
|
||||||
deobfCompile "mcp.mobius.waila:Hwyla:${config.hwyla.version}:api"
|
deobfCompile "mcp.mobius.waila:Hwyla:${config.hwyla.version}:api"
|
||||||
deobfCompile "dan200.computercraft:ComputerCraft:${config.cc.version}"
|
/* deobfCompile "dan200.computercraft:ComputerCraft:${config.cc.version}" */
|
||||||
|
deobfCompile name: "cc-tweaked", version: "${config.cctweaked.version}"
|
||||||
deobfCompile "charset:Charset:${config.charset.version}:api"
|
deobfCompile "charset:Charset:${config.charset.version}:api"
|
||||||
|
|
||||||
provided ("appeng:appliedenergistics2:${config.ae2.version}:api") {
|
provided ("appeng:appliedenergistics2:${config.ae2.version}") {
|
||||||
transitive = false
|
transitive = false
|
||||||
}
|
}
|
||||||
provided "extracells2:ExtraCells-api:${config.extracells.version}"
|
provided "extracells2:ExtraCells-api:${config.extracells.version}"
|
||||||
@ -225,5 +230,6 @@ curseforge {
|
|||||||
changelog = file("changelog.md")
|
changelog = file("changelog.md")
|
||||||
addGameVersion config.minecraft.version
|
addGameVersion config.minecraft.version
|
||||||
addGameVersion "Java 8"
|
addGameVersion "Java 8"
|
||||||
|
addGameVersion "Forge"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,19 +6,20 @@ mod.name=OpenComputers
|
|||||||
mod.group=li.cil.oc
|
mod.group=li.cil.oc
|
||||||
mod.version=1.7.5
|
mod.version=1.7.5
|
||||||
|
|
||||||
ae2.version=rv6-stable-5
|
ae2.version=rv6-stable-7
|
||||||
buildcraft.version=7.99.17
|
buildcraft.version=7.99.24.8
|
||||||
cc.version=1.80pr1-build0
|
cc.version=1.80pr1-build0
|
||||||
|
cctweaked.version=1.12.2-1.89.2
|
||||||
charset.version=0.5.6.2
|
charset.version=0.5.6.2
|
||||||
extracells.version=1.12.2:2.5.3a25
|
extracells.version=1.12.2:2.5.3a25
|
||||||
forestry.version=5.8.0.311
|
forestry.version=5.8.2.422
|
||||||
hwyla.version=1.8.26-B41_1.12.2
|
hwyla.version=1.8.26-B41_1.12.2
|
||||||
ic2.version=2.8.91-ex112
|
ic2.version=2.8.221-ex112
|
||||||
jei.version=4.15.0.268
|
jei.version=4.16.1.302
|
||||||
mcmp.version=2.5.1_66
|
mcmp.version=2.5.1_66
|
||||||
mekanism.version=1.12.2-9.4.3.330
|
mekanism.version=1.12.2-9.8.3.390
|
||||||
tis3d.version=1.3.1.18
|
tis3d.version=MC1.12.2-1.5.1.39
|
||||||
projred.version=1.12.2-4.9.3.118
|
projred.version=1.12.2-4.9.4.120
|
||||||
mrtjpcore.version=1.12.2-2.1.4.43
|
mrtjpcore.version=1.12.2-2.1.4.43
|
||||||
ccl.version=3.2.3.358
|
ccl.version=3.2.3.358
|
||||||
forgemultipart.version=2.6.2.83
|
forgemultipart.version=2.6.2.83
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
Loading…
x
Reference in New Issue
Block a user