Skip to content

Commit

Permalink
🥺🥺🥺🥺🥺🥺
Browse files Browse the repository at this point in the history
  • Loading branch information
umjammer committed Apr 27, 2024
1 parent 9e0e321 commit c2aca47
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
19 changes: 13 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,32 +47,39 @@ dependencies {
// Uncomment the following line to enable the deprecated Fabric API modules.
// These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.

// fabric-loom provides modmenu 7.0.0 which doesn't work with mc 1.20.4, so specifying the newest version.
modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}"

// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
implementation ("com.github.umjammer:vavi-speech2:0.0.17") {
implementation ("com.github.umjammer:vavi-speech2:0.0.18") {
exclude group: "org.jvoicexml", module: "freetts_jsapi10"
exclude group: "com.github.umjammer", module: "vavi-util-screenscraping"
exclude group: "vavi", module: "vavi-sound-nda"
exclude group: "com.github.umjammer", module: "vavi-sound-sandbox"
exclude group: "sen", module: "sen"
exclude group: "com.github.umjammer", module: "vavi-commons-sandbox"
exclude group: "com.github.umjammer.vavi-commons", module: "vavi-instrumentation"
exclude group: "org.ow2.asm", module: "asm"
exclude group: "com.github.umjammer", module: "vavi-speech"
exclude group: "com.github.umjammer", module: "javax-speech"
exclude group: "com.github.umjammer.jsapi", module: "javax.speech"
exclude group: "com.github.umjammer.FreeTTS", module: "freetts-jsapi10"
}
dependencyJars ("com.github.umjammer:vavi-speech2:0.0.17") { // TODO how to copy this from implementation or use implementation w/o error
dependencyJars ("com.github.umjammer:vavi-speech2:0.0.18") { // TODO how to copy this from implementation or use implementation w/o error
exclude group: "org.jvoicexml", module: "freetts_jsapi10"
exclude group: "com.github.umjammer", module: "vavi-util-screenscraping"
exclude group: "vavi", module: "vavi-sound-nda"
exclude group: "com.github.umjammer", module: "vavi-sound-sandbox"
exclude group: "sen", module: "sen"
exclude group: "com.github.umjammer", module: "vavi-commons-sandbox"
exclude group: "com.github.umjammer.vavi-commons", module: "vavi-instrumentation"
exclude group: "org.ow2.asm", module: "asm"
exclude group: "com.github.umjammer", module: "vavi-speech"
exclude group: "com.github.umjammer", module: "javax-speech"
exclude group: "com.github.umjammer.jsapi", module: "javax.speech"
exclude group: "com.github.umjammer.FreeTTS", module: "freetts-jsapi10"
}
// TODO HEY! HEY! HEY! Mr. fabric-loom, make include work recursively. my dependency jars are over 100!
configurations.dependencyJars.incoming.resolutionResult.allDependencies
.forEach {
if (!it.getRequested().toString().contains("com.github.umjammer.vavi-commons"))
if (!it.getRequested().toString().contains("com.github.umjammer:vavi-commons")) // avoiding error at remapJar task
include(it.getRequested().toString())
}
}
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ maven_group=vavi.mod.zundamod
archives_base_name=zundamod

# Dependencies
fabric_version=0.97.6+1.20.5
modmenu_version = 10.0.0-beta.1
fabric_version=0.97.7+1.20.5

0 comments on commit c2aca47

Please sign in to comment.