mirror of
https://github.com/getrebuild/rebuild.git
synced 2025-02-23 13:55:08 +08:00
v2.7.1
This commit is contained in:
parent
82173bfcc5
commit
0ebbcbf6d7
3 changed files with 4 additions and 4 deletions
2
pom.xml
2
pom.xml
|
@ -10,7 +10,7 @@
|
|||
</parent>
|
||||
<groupId>com.rebuild</groupId>
|
||||
<artifactId>rebuild</artifactId>
|
||||
<version>2.7.0</version>
|
||||
<version>2.7.1</version>
|
||||
<name>rebuild</name>
|
||||
<description>RB V2 use SpringBoot</description>
|
||||
<!-- UNCOMMENT USE TOMCAT -->
|
||||
|
|
|
@ -64,11 +64,11 @@ public class Application implements ApplicationListener<ApplicationStartedEvent>
|
|||
/**
|
||||
* Rebuild Version
|
||||
*/
|
||||
public static final String VER = "2.7.0";
|
||||
public static final String VER = "2.7.1";
|
||||
/**
|
||||
* Rebuild Build [MAJOR]{1}[MINOR]{2}[PATCH]{2}[BUILD]{2}
|
||||
*/
|
||||
public static final int BUILD = 2070002;
|
||||
public static final int BUILD = 2070103;
|
||||
|
||||
static {
|
||||
// Driver for DB
|
||||
|
|
|
@ -93,7 +93,7 @@ public final class ServerStatus {
|
|||
*/
|
||||
static Status checkDatabase() {
|
||||
String name = "Database";
|
||||
if (Installer.isUseH2()) return Status.success(name + "/H2");
|
||||
if (Installer.isUseH2()) name += "/H2";
|
||||
|
||||
String url = BootEnvironmentPostProcessor.getProperty("db.url");
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue