util

Clone or download

Added Theme System, necessary dependencies

Modified Files

M pom.xml
+34 −1
--- 'a/pom.xml'
+++ b/pom.xml
@@ -6,7 +6,7 @@
<groupId>com.StreamPi</groupId>
<artifactId>Util</artifactId>
- <version>1.0</version>
+ <version>1.0.0</version>
<build>
<plugins>
@@ -42,6 +42,39 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
+
+ <CommonsBeanUtilsVersion>1.9.4</CommonsBeanUtilsVersion>
+ <CommonsConfigurationVersion>2.7</CommonsConfigurationVersion>
+
+ <SL4JVersion>1.7.30</SL4JVersion>
+
</properties>
+ <dependencies>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>${CommonsBeanUtilsVersion}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-configuration2</artifactId>
+ <version>${CommonsConfigurationVersion}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>${SL4JVersion}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>${SL4JVersion}</version>
+ </dependency>
+
+ </dependencies>
+
</project>
\ 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;