From 4cc07a7b022593a45d2c1055640a465be5ffd12e Mon Sep 17 00:00:00 2001 From: dfsek Date: Wed, 1 Dec 2021 10:21:20 -0700 Subject: [PATCH] update to latest Tectonic version --- common/addons/language-yaml/build.gradle.kts | 2 +- .../manifest-addon-loader/build.gradle.kts | 2 +- common/api/core/build.gradle.kts | 2 -- common/api/inject/build.gradle.kts | 2 -- common/api/noise/build.gradle.kts | 2 -- common/api/registry/build.gradle.kts | 2 -- common/api/util/build.gradle.kts | 2 ++ common/implementation/base/build.gradle.kts | 16 ++++++++-------- 8 files changed, 12 insertions(+), 18 deletions(-) diff --git a/common/addons/language-yaml/build.gradle.kts b/common/addons/language-yaml/build.gradle.kts index bf63d55b9..d723a5ccb 100644 --- a/common/addons/language-yaml/build.gradle.kts +++ b/common/addons/language-yaml/build.gradle.kts @@ -3,6 +3,6 @@ import com.dfsek.terra.version version = version("0.1.0") dependencies { - shadedImplementation("com.dfsek.tectonic:yaml:2.1.2") + shadedImplementation("com.dfsek.tectonic:yaml:2.2.0") shadedApi(project(":common:addons:manifest-addon-loader")) } diff --git a/common/addons/manifest-addon-loader/build.gradle.kts b/common/addons/manifest-addon-loader/build.gradle.kts index 0ead7cc99..597791d9c 100644 --- a/common/addons/manifest-addon-loader/build.gradle.kts +++ b/common/addons/manifest-addon-loader/build.gradle.kts @@ -4,7 +4,7 @@ version = version("0.1.0") dependencies { shadedApi("commons-io:commons-io:2.6") - shadedImplementation("com.dfsek.tectonic:yaml:2.1.2") + shadedImplementation("com.dfsek.tectonic:yaml:2.2.0") } tasks.withType { diff --git a/common/api/core/build.gradle.kts b/common/api/core/build.gradle.kts index b45a936f4..e559cec05 100644 --- a/common/api/core/build.gradle.kts +++ b/common/api/core/build.gradle.kts @@ -4,8 +4,6 @@ dependencies { shadedApi(project(":common:api:registry")) shadedApi(project(":common:api:addons")) - shadedApi("com.dfsek.tectonic:common:2.1.2") - shadedApi("net.jafama:jafama:2.3.2") shadedApi("org.slf4j:slf4j-api:1.7.32") diff --git a/common/api/inject/build.gradle.kts b/common/api/inject/build.gradle.kts index 36dab1e82..8519b7689 100644 --- a/common/api/inject/build.gradle.kts +++ b/common/api/inject/build.gradle.kts @@ -1,8 +1,6 @@ dependencies { shadedApi(project(":common:api:util")) - shadedApi("com.dfsek.tectonic:common:2.1.2") - shadedApi("net.jafama:jafama:2.3.2") } diff --git a/common/api/noise/build.gradle.kts b/common/api/noise/build.gradle.kts index ee984a4d7..997e02bcc 100644 --- a/common/api/noise/build.gradle.kts +++ b/common/api/noise/build.gradle.kts @@ -3,8 +3,6 @@ dependencies { shadedApi("com.dfsek:paralithic:0.6.0") - shadedApi("com.dfsek.tectonic:common:2.1.2") - shadedApi("net.jafama:jafama:2.3.2") } diff --git a/common/api/registry/build.gradle.kts b/common/api/registry/build.gradle.kts index 842cd5871..db0506f53 100644 --- a/common/api/registry/build.gradle.kts +++ b/common/api/registry/build.gradle.kts @@ -1,6 +1,4 @@ dependencies { shadedApi(project(":common:api:util")) - - shadedApi("com.dfsek.tectonic:common:2.1.2") } diff --git a/common/api/util/build.gradle.kts b/common/api/util/build.gradle.kts index 6f8608f5a..51859d82b 100644 --- a/common/api/util/build.gradle.kts +++ b/common/api/util/build.gradle.kts @@ -1,4 +1,6 @@ dependencies { + shadedApi("com.dfsek.tectonic:common:2.2.0") + shadedApi("net.jafama:jafama:2.3.2") } diff --git a/common/implementation/base/build.gradle.kts b/common/implementation/base/build.gradle.kts index 555817213..a011c05cf 100644 --- a/common/implementation/base/build.gradle.kts +++ b/common/implementation/base/build.gradle.kts @@ -1,13 +1,13 @@ dependencies { - "shadedApi"(project(":common:api")) - "shadedApi"(project(":common:implementation:bootstrap-addon-loader")) + shadedApi(project(":common:api")) + shadedApi(project(":common:implementation:bootstrap-addon-loader")) - "shadedApi"("org.apache.commons:commons-rng-core:1.3") - "shadedApi"("commons-io:commons-io:2.6") - "shadedImplementation"("org.apache.commons:commons-text:1.9") + shadedApi("org.apache.commons:commons-rng-core:1.3") + shadedApi("commons-io:commons-io:2.6") + shadedImplementation("org.apache.commons:commons-text:1.9") - "shadedImplementation"("com.dfsek.tectonic:yaml:2.1.2") + shadedImplementation("com.dfsek.tectonic:yaml:2.2.0") - "shadedImplementation"("org.yaml:snakeyaml:1.27") - "shadedImplementation"("org.ow2.asm:asm:9.2") + shadedImplementation("org.yaml:snakeyaml:1.27") + shadedImplementation("org.ow2.asm:asm:9.2") }