Skip to content

Commit ad8f3bb

Browse files
committed
update dependencies
1 parent 6f43448 commit ad8f3bb

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ repositories {
1313
}
1414

1515
dependencies {
16-
api("io.github.darvil82:utils:0.7.1")
17-
api("io.github.darvil82:terminal-text-formatter:2.2.0")
16+
api("io.github.darvil82:utils:0.8")
17+
api("io.github.darvil82:terminal-text-formatter:2.3.0")
1818

1919
implementation("org.jetbrains:annotations:24.1.0")
2020
testImplementation(platform("org.junit:junit-bom:5.9.1"))

src/main/java/module-info.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module darvil.lanat {
22
requires org.jetbrains.annotations;
3-
requires utils;
4-
requires textFormatter;
3+
requires darvil.utils;
4+
requires darvil.textFormatter;
55

66
exports lanat;
77
exports lanat.argumentTypes;
@@ -21,5 +21,5 @@
2121
exports lanat.parsing.errors.contexts.formatting;
2222
exports lanat.parsing.errors.handlers;
2323

24-
opens lanat.helpRepresentation.descriptions.tags to utils;
24+
opens lanat.helpRepresentation.descriptions.tags to darvil.utils;
2525
}

src/test/java/module-info.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
requires org.junit.jupiter.api;
33
requires darvil.lanat;
44
requires org.jetbrains.annotations;
5-
requires utils;
6-
requires textFormatter;
5+
requires darvil.utils;
6+
requires darvil.textFormatter;
77

8-
exports lanat.tests to darvil.lanat, org.junit.platform.commons, utils;
9-
exports lanat.tests.parser.commandTemplates to darvil.lanat, org.junit.platform.commons, utils;
10-
exports lanat.tests.parser to darvil.lanat, org.junit.platform.commons, utils;
8+
exports lanat.tests to darvil.lanat, org.junit.platform.commons, darvil.utils;
9+
exports lanat.tests.parser.commandTemplates to darvil.lanat, org.junit.platform.commons, darvil.utils;
10+
exports lanat.tests.parser to darvil.lanat, org.junit.platform.commons, darvil.utils;
1111
}

0 commit comments

Comments
 (0)