From: Debayan Sutradhar Date: Wed, 14 Oct 2020 22:41:40 +0530 Subject: Added Theme System, necessary dependencies --- Added Theme System, necessary dependencies --- --- 'a/pom.xml' +++ b/pom.xml @@ -6,7 +6,7 @@ com.StreamPi Util - 1.0 + 1.0.0 @@ -42,6 +42,39 @@ UTF-8 11 11 + + 1.9.4 + 2.7 + + 1.7.30 + + + + commons-beanutils + commons-beanutils + ${CommonsBeanUtilsVersion} + + + + org.apache.commons + commons-configuration2 + ${CommonsConfigurationVersion} + + + + org.slf4j + slf4j-api + ${SL4JVersion} + + + + org.slf4j + slf4j-log4j12 + ${SL4JVersion} + + + + \ No newline at end of file --- 'a/src/main/java/module-info.java' +++ b/src/main/java/module-info.java @@ -1,4 +1,7 @@ module com.StreamPi.Util { + requires org.apache.commons.configuration2; + requires org.slf4j; + exports com.StreamPi.Util.Version; exports com.StreamPi.Util.Exception; exports com.StreamPi.Util.Platform;