From 3e0e974a45ef21af042f4386efef0569c638cee6 Mon Sep 17 00:00:00 2001 From: hotlcc Date: Wed, 15 Aug 2018 16:18:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/hotlcc/wechat4j/util/PropertiesUtil.java | 4 ++-- .../resources/{config => META-INF/wechat4j}/app.properties | 0 .../{config => META-INF/wechat4j}/webwx-url.properties | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/main/resources/{config => META-INF/wechat4j}/app.properties (100%) rename src/main/resources/{config => META-INF/wechat4j}/webwx-url.properties (100%) diff --git a/src/main/java/com/hotlcc/wechat4j/util/PropertiesUtil.java b/src/main/java/com/hotlcc/wechat4j/util/PropertiesUtil.java index c1aaa4c..b0a2830 100644 --- a/src/main/java/com/hotlcc/wechat4j/util/PropertiesUtil.java +++ b/src/main/java/com/hotlcc/wechat4j/util/PropertiesUtil.java @@ -17,8 +17,8 @@ public final class PropertiesUtil { static { loadProperties(new String[]{ - "config/app.properties", - "config/webwx-url.properties" + "META-INF/wechat4j/app.properties", + "META-INF/wechat4j/webwx-url.properties" }); } diff --git a/src/main/resources/config/app.properties b/src/main/resources/META-INF/wechat4j/app.properties similarity index 100% rename from src/main/resources/config/app.properties rename to src/main/resources/META-INF/wechat4j/app.properties diff --git a/src/main/resources/config/webwx-url.properties b/src/main/resources/META-INF/wechat4j/webwx-url.properties similarity index 100% rename from src/main/resources/config/webwx-url.properties rename to src/main/resources/META-INF/wechat4j/webwx-url.properties