diff --git a/README.md b/README.md index 441a336..78a1c2a 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,38 @@ # yexuejc-springboot-base + +#### 项目介绍 基于springboot maven 封装可继承基础工程 -### 引用 ->yexuejc.springboot.version=1.0.3 +内含parent和base工程可分开使用 +parent:版本封装 +base:功能封装 + +#### 引用 +>yexuejc.springboot.version=1.0.4 pom.xml ``` + + + com.github.yexuejc.yexuejc-springboot + yexuejc-springboot-parent + ${yexuejc.springboot.version} + + + + + com.github.yexuejc.yexuejc-springboot + yexuejc-springboot-base + ${parent.version} + + + com.github.yexuejc - yexuejc-springboot - ${yexuejc.springboot.version} + yexuejc-base + ${yexuejc.base.version} @@ -23,7 +44,7 @@ pom.xml ``` -### 目录 +#### 目录 \src\main\java @@ -69,4 +90,9 @@ pom.xml com.yexuejc.springboot.base.ApplicationRun 测试启动入口 - \ No newline at end of file + + + +#### 版本更新 + +[更新记录](UPDATE.md) \ No newline at end of file diff --git a/UPDATE.md b/UPDATE.md index bbfb5c9..3e42d42 100644 --- a/UPDATE.md +++ b/UPDATE.md @@ -1,6 +1,12 @@ uselaw-base 更新内容 ------------------- +#### version :1.0.4 +**time:** 2018-5-4 09:54:18 +**branch:** master +**update:** +>1.更新springboot至1.5.12.RELEASE +# #### version :1.0.3 **time:** 2018-4-9 15:24:13 **branch:** master diff --git a/pom.xml b/pom.xml index ee64764..218358f 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.yexuejc.springboot yexuejc-springboot-parent - 1.0.3 + 1.0.4 pom ${project.artifactId} @@ -15,7 +15,7 @@ org.springframework.boot spring-boot-starter-parent - 1.5.9.RELEASE + 1.5.12.RELEASE diff --git a/yexuejc-springboot-base/src/test/resources/application.properties b/yexuejc-springboot-base/src/test/resources/application.properties index 57ea065..3e5267b 100644 --- a/yexuejc-springboot-base/src/test/resources/application.properties +++ b/yexuejc-springboot-base/src/test/resources/application.properties @@ -1,2 +1,4 @@ server.port=8080 -logging.level.root=info \ No newline at end of file +logging.level.root=info + +security.basic.enabled=false \ No newline at end of file