parent
dda889d6ed
commit
d6fad367fc
|
@ -1,5 +1,9 @@
|
||||||
# Version history
|
# Version history
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
* **Changed** Rhubarb Lip Sync for Spine so that it works with any modern JRE ([issue #97](https://github.com/DanielSWolf/rhubarb-lip-sync/issues/97))
|
||||||
|
|
||||||
## Version 1.10.0
|
## Version 1.10.0
|
||||||
|
|
||||||
* **Added** switch data file exporter for Moho (formerly Anime Studio) and OpenToonz ([issue #69](https://github.com/DanielSWolf/rhubarb-lip-sync/issues/69))
|
* **Added** switch data file exporter for Moho (formerly Anime Studio) and OpenToonz ([issue #69](https://github.com/DanielSWolf/rhubarb-lip-sync/issues/69))
|
||||||
|
|
|
@ -3,6 +3,7 @@ import java.io.File
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.41"
|
kotlin("jvm") version "1.3.41"
|
||||||
|
id("org.openjfx.javafxplugin") version "0.0.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getVersion(): String {
|
fun getVersion(): String {
|
||||||
|
@ -22,17 +23,23 @@ version = getVersion()
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
jcenter()
|
jcenter()
|
||||||
|
maven("https://oss.sonatype.org/content/repositories/snapshots")
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(kotlin("stdlib-jdk8"))
|
implementation(kotlin("stdlib-jdk8"))
|
||||||
implementation("com.beust:klaxon:5.0.1")
|
implementation("com.beust:klaxon:5.0.1")
|
||||||
implementation("org.apache.commons:commons-lang3:3.9")
|
implementation("org.apache.commons:commons-lang3:3.9")
|
||||||
implementation("no.tornado:tornadofx:1.7.19")
|
implementation("no.tornado:tornadofx:2.0.0-SNAPSHOT")
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter:5.5.0")
|
testImplementation("org.junit.jupiter:junit-jupiter:5.5.0")
|
||||||
testCompile("org.assertj:assertj-core:3.11.1")
|
testCompile("org.assertj:assertj-core:3.11.1")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
javafx {
|
||||||
|
version = "15.0.1"
|
||||||
|
modules("javafx.controls")
|
||||||
|
}
|
||||||
|
|
||||||
tasks.withType<KotlinCompile> {
|
tasks.withType<KotlinCompile> {
|
||||||
kotlinOptions.jvmTarget = "1.8"
|
kotlinOptions.jvmTarget = "1.8"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue