mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-27 15:06:41 -04:00
readd embeds
This commit is contained in:
parent
1ff8d8a030
commit
59cf311376
15
build.gradle
15
build.gradle
@ -64,6 +64,7 @@ repositories {
|
|||||||
maven {
|
maven {
|
||||||
name "Mobius Repo"
|
name "Mobius Repo"
|
||||||
url "http://mobiusstrip.eu/maven"
|
url "http://mobiusstrip.eu/maven"
|
||||||
|
allowInsecureProtocol true
|
||||||
metadataSources {
|
metadataSources {
|
||||||
mavenPom()
|
mavenPom()
|
||||||
artifact()
|
artifact()
|
||||||
@ -84,13 +85,16 @@ repositories {
|
|||||||
ivy {
|
ivy {
|
||||||
name 'gtnh_download_source'
|
name 'gtnh_download_source'
|
||||||
artifactPattern "http://downloads.gtnewhorizons.com/Mods_for_Jenkins/[module]-[revision].[ext]"
|
artifactPattern "http://downloads.gtnewhorizons.com/Mods_for_Jenkins/[module]-[revision].[ext]"
|
||||||
|
allowInsecureProtocol true
|
||||||
}
|
}
|
||||||
maven { // GalacticGreg, YAMCore,..
|
maven { // GalacticGreg, YAMCore,..
|
||||||
name 'UsrvDE'
|
name 'UsrvDE'
|
||||||
url "http://jenkins.usrv.eu:8081/nexus/content/repositories/releases/"
|
url "http://jenkins.usrv.eu:8081/nexus/content/repositories/releases/"
|
||||||
|
allowInsecureProtocol true
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
url "http://downloads.gtnewhorizons.com/Mods_for_Jenkins/"
|
url "http://downloads.gtnewhorizons.com/Mods_for_Jenkins/"
|
||||||
|
allowInsecureProtocol true
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name = "jitpack"
|
name = "jitpack"
|
||||||
@ -115,6 +119,11 @@ configFile.withReader {
|
|||||||
project.ext.config = new ConfigSlurper().parse prop
|
project.ext.config = new ConfigSlurper().parse prop
|
||||||
}
|
}
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
embedded
|
||||||
|
implementation.extendsFrom embedded
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compileOnly "com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:master-SNAPSHOT:dev"
|
compileOnly "com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:master-SNAPSHOT:dev"
|
||||||
compileOnly "com.github.GTNewHorizons:NotEnoughItems:master-SNAPSHOT:dev"
|
compileOnly "com.github.GTNewHorizons:NotEnoughItems:master-SNAPSHOT:dev"
|
||||||
@ -153,9 +162,9 @@ dependencies {
|
|||||||
compileOnly name: 'BloodMagic', version: project.config.bloodmagic.version, ext: 'jar'
|
compileOnly name: 'BloodMagic', version: project.config.bloodmagic.version, ext: 'jar'
|
||||||
compileOnly name: 'CoFHLib', version: config.cofhlib.version, ext: 'jar'
|
compileOnly name: 'CoFHLib', version: config.cofhlib.version, ext: 'jar'
|
||||||
|
|
||||||
implementation 'com.google.code.findbugs:jsr305:1.3.9' // Annotations used by google libs.
|
implementation 'com.google.code.findbugs:jsr305:3.0.2' // Annotations used by google libs.
|
||||||
|
|
||||||
//embedded files('libs/OpenComputers-JNLua.jar', 'libs/OpenComputers-LuaJ.jar')
|
embedded files('libs/OpenComputers-JNLua.jar', 'libs/OpenComputers-LuaJ.jar')
|
||||||
|
|
||||||
testCompile "org.mockito:mockito-all:1.10.19"
|
testCompile "org.mockito:mockito-all:1.10.19"
|
||||||
testCompile "org.scalactic:scalactic_2.11:2.2.6"
|
testCompile "org.scalactic:scalactic_2.11:2.2.6"
|
||||||
@ -211,8 +220,6 @@ configurations {
|
|||||||
implementation.extendsFrom embedded
|
implementation.extendsFrom embedded
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
version = config.minecraft_version + "-" + config.forge_version + "-" + config.minecraft_version
|
version = config.minecraft_version + "-" + config.forge_version + "-" + config.minecraft_version
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user