Skip to content

Commit 6144443

Browse files
committed
3
1 parent 7dec80f commit 6144443

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Animation/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ dependencies {
2222
mappings(libs.yarn)
2323
modImplementation(libs.bundles.fabric)
2424

25-
api(project(":Math"))
26-
api(project(":Visual"))
25+
implementation(project(":Math"))
26+
implementation(project(":Visual"))
2727
}
2828

2929
java {

Visual/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222
mappings(libs.yarn)
2323
modImplementation(libs.bundles.fabric)
2424

25-
api(project(":Math"))
25+
implementation(project(":Math"))
2626
api(libs.mixbox)
2727
}
2828

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ tasks {
5454
}
5555

5656
register("collectJars", Copy::class.java) {
57+
dependsOn("deleteCollectedJars")
5758
group = "build"
5859

5960
val destination = file("${layout.buildDirectory.get()}/libs/latest")

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
maven-group = "net.krlite"
33
archives-name = "equator"
4-
mod = "2.6.4-alpha.2"
4+
mod = "2.6.4-alpha.3"
55

66
archives-animation-name = "equator-animation"
77
archives-math-name = "equator-math"

0 commit comments

Comments
 (0)