diff --git a/pom.xml b/pom.xml
index dfb7cff..6feabcc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
io.github.umutayb
context-store
- 1.0.3
+ 1.0.4
jar
Context Store
Context Store is a reliable context storage solution where values can be stored, updated and accessed on the same thread!
diff --git a/src/main/java/context/ContextStore.java b/src/main/java/context/ContextStore.java
index 40a342f..3baae24 100644
--- a/src/main/java/context/ContextStore.java
+++ b/src/main/java/context/ContextStore.java
@@ -307,7 +307,7 @@ public static synchronized void loadSystemProperties() {
static {
Level defaulLogLevel = log.getLevel();
log.setLevel(Level.OFF);
- loadProperties("pom.properties", "pickleib.properties", "app.properties", "test.properties");
+ loadProperties("pom.properties", "pickleib.properties", "app.properties", "test.properties", "secret.properties");
log.setLevel(defaulLogLevel);
}