1
0
mirror of https://github.com/chatopera/cosin.git synced 2025-07-24 08:31:45 +08:00

https://github.com/chatopera/cskefu/issues/713 print license in start log, upgrade to lang lvl to java 11

This commit is contained in:
Hai Liang Wang 2022-06-25 08:09:53 +08:00
parent 1d523cd1d2
commit 9e3292ac70
4 changed files with 16 additions and 9 deletions

View File

@ -1,4 +1,4 @@
FROM chatopera/java-1.8.0-amazon-corretto-jdk:1.0.0 FROM chatopera/java:11
MAINTAINER Hai Liang Wang <hain@chatopera.com> MAINTAINER Hai Liang Wang <hain@chatopera.com>
# base image is built with config/base/build.sh # base image is built with config/base/build.sh

View File

@ -96,6 +96,8 @@ public class Application {
SpringApplication app = new SpringApplicationBuilder(Application.class) SpringApplication app = new SpringApplicationBuilder(Application.class)
.properties("spring.config.name:application,git") .properties("spring.config.name:application,git")
.build(); .build();
System.out.println("春松客服采用开源许可证Apache License 2.0");
System.out.println("详细介绍https://docs.chatopera.com/products/cskefu/osc/license.html");
BlessingAndUnblessing.print(); BlessingAndUnblessing.print();
app.setBannerMode(Banner.Mode.CONSOLE); app.setBannerMode(Banner.Mode.CONSOLE);
app.setAddCommandLineProperties(false); app.setAddCommandLineProperties(false);

View File

@ -1,12 +1,17 @@
. . . ___ ___ ___ ___ ___
.... ... .. ... .||. .... .... .||. .... .... .. ... .||. .... ... .. / /\ / /\ / /\ / /\ ___ / /\
.| '' .| '|. || || || '' .|| .| '' || .| '' .|...|| || || || .|...|| ||' '' / /::\ / /::\ / /:/ / /::\ / /\ / /:/
|| || || || || || .|' || || || || || || || || || || / /:/\:\ /__/:/\:\ / /:/ / /:/\:\ / /::\ / /:/
'|...' '|..|' .||. ||. '|.' '|..'|' '|...' '|.' '|...' '|...' .||. ||. '|.' '|...' .||. / /:/ \:\ _\_ \:\ \:\ / /::\____ / /::\ \:\ / /:/\:\ / /:/
/__/:/ \ \:\ /__/\ \:\ \:\ /__/:/\:::::\ /__/:/\:\ \:\ / /::\ \:\ /__/:/ /\
\ \:\ \__\/ \ \:\ \:\_\/ \__\/~|:|~~~~ \ \:\ \:\_\/ /__/:/\:\ \:\ \ \:\ /:/
\ \:\ \ \:\_\:\ | |:| \ \:\ \:\ \__\/ \:\_\/ \ \:\ /:/
\ \:\ \ \:\/:/ | |:| \ \:\_\/ \ \:\ \ \:\/:/
\ \:\ \ \::/ |__|:| \ \:\ \__\/ \ \::/
\__\/ \__\/ \__\| \__\/ \__\/
==================== Powered by Chatopera Inc. ================= ==================== Powered by CSKeFu =================
春松客服: 合作开源客服系统,共赢未来! v${git.build.version} build ${git.commit.id.abbrev} 春松客服: 合作开源客服系统,共赢未来! v${git.build.version} build ${git.commit.id.abbrev}
开源许可证Apache License 2.0
开源社区https://www.cskefu.com 开源社区https://www.cskefu.com
系统进行初始化,第一次安装后,根据文档进行配置 系统进行初始化,第一次安装后,根据文档进行配置

View File

@ -15,7 +15,7 @@
</parent> </parent>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version> <java.version>11</java.version>
<argLine>-Dfile.encoding=UTF-8</argLine> <argLine>-Dfile.encoding=UTF-8</argLine>
</properties> </properties>
<dependencies> <dependencies>