diff --git a/README.md b/README.md
index a26114f..5d01dcd 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,7 @@ LogiLed is a Logitech G513 Carbon GUI driver for adjusting backlight and effects
#### Used libraries & resources
* [OpenJFX](https://wiki.openjdk.java.net/display/OpenJFX/Main)
* [usb4java](https://mvnrepository.com/artifact/org.usb4java/usb4java)
+* [Jackson](https://github.com/FasterXML/jackson)
* Few icons taken from: [materialdesignicons.com](http://materialdesignicons.com/)
* Special thanks to pioneers and superstars who created, contributed and maintaining [g810-led](https://github.com/MatMoul/g810-led) project!
@@ -55,7 +56,12 @@ Want to support development? Make a donation* (see below):
#### TODO
* [x] Tray support
-* [ ] Configuration files support
+ * [ ] tray icon size checks
+* [x] Configuration files support
* [ ] Settings
+ * [ ] Tray icon settings
+ * [ ] Autoload
* [ ] Headless mode (CLI)
+* [ ] Fix UI
+ * [ ] Add opened file name to info pane
* [ ] Dark theme
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 6fa8e6f..596e6ad 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
loper
LogiLed
- 0.3-SNAPSHOT
+ 0.4-SNAPSHOT
@@ -143,6 +143,27 @@
1.3.0
compile
+
+
+ com.fasterxml.jackson.core
+ jackson-core
+ 2.10.0
+ compile
+
+
+
+ com.fasterxml.jackson.core
+ jackson-annotations
+ 2.10.0
+ compile
+
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+ 2.10.0
+ compile
+