From 59b256b9fbabeb4f77b13c2e6629cb05ad24d7d7 Mon Sep 17 00:00:00 2001 From: Brett Bender Date: Thu, 3 Nov 2022 15:54:02 -0500 Subject: [PATCH] chore: Add reasons for libraries & remove snakeyaml --- README.md | 10 +++++++++- build.gradle.kts | 4 +--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 714df8e..62a7bed 100644 --- a/README.md +++ b/README.md @@ -9,14 +9,22 @@ The bot does not yet clone the events from iCal to Discord, rather it only curre ## Built With - [sksamuel/hoplite](https://github.com/sksamuel/hoplite) + - Config Library - [ical4j/ical4j](https://github.com/ical4j/ical4j) + - Parsing the iCal file - [DV8FromTheWorld/JDA](https://github.com/DV8FromTheWorld/JDA) + - Discord API Wrapper - [Litote/kmongo](https://github.com/Litote/kmongo) + - Toolkit for Mongo in Kotlin - [junodevs/kriess](https://github.com/junodevs/kriess) + - Command handler with some extra features - [qos-ch/logback](https://github.com/qos-ch/logback) + - Logging framework - [square/okhttp](https://github.com/square/okhttp) + - Downloading iCal file - [ronmamo/reflections](https://github.com/ronmamo/reflections) -- [snakeyaml/snakeyaml](https://github.com/snakeyaml/snakeyaml) + - Querying of classpath metadata at runtime + - Allows for commands and services to be dynamically registered ## Usage ### Build it! diff --git a/build.gradle.kts b/build.gradle.kts index 1c49fc7..a624851 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -51,14 +51,12 @@ dependencies { // Utilities implementation("ch.qos.logback:logback-classic:1.4.4") implementation("org.reflections:reflections:0.10.2") + implementation("com.squareup.okhttp3:okhttp:4.10.0") // Calendar implementation("org.mnode.ical4j:ical4j:3.2.6") - implementation("com.squareup.okhttp3:okhttp:4.10.0") - // Data - implementation("org.yaml:snakeyaml:1.31") implementation("org.litote.kmongo:kmongo:4.7.2") implementation("com.sksamuel.hoplite:hoplite-core:1.4.16") implementation("com.sksamuel.hoplite:hoplite-yaml:1.4.16")