From a8c46c6ef77b195dca977d4f30e7e99db778ad76 Mon Sep 17 00:00:00 2001 From: wzp Date: Thu, 10 Oct 2024 09:29:10 +0800 Subject: [PATCH] deps: change snakeyaml to api --- .idea/modules.xml | 9 +++++++++ .idea/modules/MyBot.main.iml | 8 ++++++++ .idea/modules/mybot-api/MyBot.mybot-api.main.iml | 8 ++++++++ build.gradle.kts | 2 +- 4 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .idea/modules.xml create mode 100644 .idea/modules/MyBot.main.iml create mode 100644 .idea/modules/mybot-api/MyBot.mybot-api.main.iml diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..9260d95 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/MyBot.main.iml b/.idea/modules/MyBot.main.iml new file mode 100644 index 0000000..afc1871 --- /dev/null +++ b/.idea/modules/MyBot.main.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules/mybot-api/MyBot.mybot-api.main.iml b/.idea/modules/mybot-api/MyBot.mybot-api.main.iml new file mode 100644 index 0000000..4acdb19 --- /dev/null +++ b/.idea/modules/mybot-api/MyBot.mybot-api.main.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 5b3580b..123c26e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -31,7 +31,7 @@ allprojects { testImplementation(platform("org.junit:junit-bom:5.10.0")) testImplementation("org.junit.jupiter:junit-jupiter") // https://mvnrepository.com/artifact/org.yaml/snakeyaml - implementation("org.yaml:snakeyaml:2.2") + api("org.yaml:snakeyaml:2.2") } tasks.compileJava { options.encoding = "UTF-8"