release 1.2.3
This commit is contained in:
parent
39c835d8e3
commit
382b3dd3f0
|
@ -31,7 +31,7 @@ requires api section to be setup along these lines
|
||||||
|
|
||||||
https://github.com/elytra/MatterLink/releases
|
https://github.com/elytra/MatterLink/releases
|
||||||
|
|
||||||
https://ci.elytradev.com/job/elytra/job/MatterLink/job/master/
|
https://ci.elytradev.com/job/elytra/job/MatterLink/job/master/lastSuccessfulBuild/
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
|
|
18
build.gradle
18
build.gradle
|
@ -1,9 +1,9 @@
|
||||||
plugins {
|
plugins {
|
||||||
id "org.jetbrains.kotlin.jvm" version '1.2.21'
|
id "org.jetbrains.kotlin.jvm" version '1.2.21'
|
||||||
|
id 'com.matthewprenger.cursegradle' version '1.0.10'
|
||||||
id 'idea'
|
id 'idea'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
apply plugin: "kotlin"
|
apply plugin: "kotlin"
|
||||||
apply plugin: "idea"
|
apply plugin: "idea"
|
||||||
|
@ -21,6 +21,7 @@ subprojects {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (name != "core") {
|
if (name != "core") {
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
jcenter()
|
jcenter()
|
||||||
maven {
|
maven {
|
||||||
|
@ -33,5 +34,20 @@ subprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply plugin: 'com.matthewprenger.cursegradle'
|
||||||
|
curseforge {
|
||||||
|
if (project.hasProperty('CURSEFORGE_API_TOKEN') && project.hasProperty('release')) {
|
||||||
|
apiKey = CURSEFORGE_API_TOKEN
|
||||||
|
}
|
||||||
|
project {
|
||||||
|
id = '287323'
|
||||||
|
releaseType = 'beta'
|
||||||
|
relations {
|
||||||
|
requiredLibrary 'shadowfacts-forgelin'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1 +1 @@
|
||||||
mod_version = 1.2.2
|
mod_version = 1.2.3
|
||||||
|
|
Loading…
Reference in New Issue