31 lines
585 B
Java
31 lines
585 B
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package org.redkale.util;
|
|
|
|
/**
|
|
* <p>
|
|
* 详情见: https://redkale.org
|
|
*
|
|
* @author zhangjx
|
|
*/
|
|
public final class Redkale {
|
|
|
|
private Redkale() {
|
|
}
|
|
|
|
public static String getDotedVersion() {
|
|
return "1.8.8";
|
|
}
|
|
|
|
public static int getMajorVersion() {
|
|
return 1;
|
|
}
|
|
|
|
public static int getMinorVersion() {
|
|
return 8;
|
|
}
|
|
}
|