chore: Add reasons for libraries & remove snakeyaml

This commit is contained in:
2022-11-03 15:54:02 -05:00
parent 93d3b84646
commit 59b256b9fb
2 changed files with 10 additions and 4 deletions

View File

@@ -9,14 +9,22 @@ The bot does not yet clone the events from iCal to Discord, rather it only curre
## Built With ## Built With
- [sksamuel/hoplite](https://github.com/sksamuel/hoplite) - [sksamuel/hoplite](https://github.com/sksamuel/hoplite)
- Config Library
- [ical4j/ical4j](https://github.com/ical4j/ical4j) - [ical4j/ical4j](https://github.com/ical4j/ical4j)
- Parsing the iCal file
- [DV8FromTheWorld/JDA](https://github.com/DV8FromTheWorld/JDA) - [DV8FromTheWorld/JDA](https://github.com/DV8FromTheWorld/JDA)
- Discord API Wrapper
- [Litote/kmongo](https://github.com/Litote/kmongo) - [Litote/kmongo](https://github.com/Litote/kmongo)
- Toolkit for Mongo in Kotlin
- [junodevs/kriess](https://github.com/junodevs/kriess) - [junodevs/kriess](https://github.com/junodevs/kriess)
- Command handler with some extra features
- [qos-ch/logback](https://github.com/qos-ch/logback) - [qos-ch/logback](https://github.com/qos-ch/logback)
- Logging framework
- [square/okhttp](https://github.com/square/okhttp) - [square/okhttp](https://github.com/square/okhttp)
- Downloading iCal file
- [ronmamo/reflections](https://github.com/ronmamo/reflections) - [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 ## Usage
### Build it! ### Build it!

View File

@@ -51,14 +51,12 @@ dependencies {
// Utilities // Utilities
implementation("ch.qos.logback:logback-classic:1.4.4") implementation("ch.qos.logback:logback-classic:1.4.4")
implementation("org.reflections:reflections:0.10.2") implementation("org.reflections:reflections:0.10.2")
implementation("com.squareup.okhttp3:okhttp:4.10.0")
// Calendar // Calendar
implementation("org.mnode.ical4j:ical4j:3.2.6") implementation("org.mnode.ical4j:ical4j:3.2.6")
implementation("com.squareup.okhttp3:okhttp:4.10.0")
// Data // Data
implementation("org.yaml:snakeyaml:1.31")
implementation("org.litote.kmongo:kmongo:4.7.2") implementation("org.litote.kmongo:kmongo:4.7.2")
implementation("com.sksamuel.hoplite:hoplite-core:1.4.16") implementation("com.sksamuel.hoplite:hoplite-core:1.4.16")
implementation("com.sksamuel.hoplite:hoplite-yaml:1.4.16") implementation("com.sksamuel.hoplite:hoplite-yaml:1.4.16")