Commit b668fd78 by inrgihc

version for 1.1.0

parent 5240684d
...@@ -7,6 +7,7 @@ body: ...@@ -7,6 +7,7 @@ body:
label: sqlrest版本 label: sqlrest版本
options: options:
- "1.0.0" - "1.0.0"
- "1.1.0"
validations: validations:
required: true required: true
- type: dropdown - type: dropdown
......
![](https://gitee.com/inrgihc/sqlrest/badge/star.svg)
![](https://gitee.com/inrgihc/sqlrest/badge/fork.svg?theme=gvp)
![SQLREST](docs/images/SQLREST.PNG#pic_center) ![SQLREST](docs/images/SQLREST.PNG#pic_center)
> 将数据库可执行的SQL生成RESTful风格的http接口的工具 > 将数据库可执行的SQL直接RESTful风格的http接口的便捷工具
## 一、工具介绍 ## 一、工具介绍
...@@ -52,6 +55,8 @@ ...@@ -52,6 +55,8 @@
### 3、模块结构功能 ### 3、模块结构功能
![STRUCTURE.PNG](docs/images/STRUCTURE.PNG)
``` ```
└── sqlrest └── sqlrest
├── sqlrest-common // sqlrest通用定义模块 ├── sqlrest-common // sqlrest通用定义模块
...@@ -60,7 +65,7 @@ ...@@ -60,7 +65,7 @@
├── sqlrest-persistence // sqlrest的数据库持久化模块 ├── sqlrest-persistence // sqlrest的数据库持久化模块
├── sqlrest-core // sqlrest-core的接口实现模块 ├── sqlrest-core // sqlrest-core的接口实现模块
├── sqlrest-gateway // Gateway网关节点 ├── sqlrest-gateway // Gateway网关节点
├── sqlrest-executor // Executor接口执行节点 ├── sqlrest-executor // Executor执行节点
├── sqlrest-manager // Manager管理节点 ├── sqlrest-manager // Manager管理节点
├── sqlrest-manager-ui // 基于Vue2的Manager前段WEB交互页面 ├── sqlrest-manager-ui // 基于Vue2的Manager前段WEB交互页面
├── sqlrest-dist // 基于maven-assembly-plugin插件的项目打包模块 ├── sqlrest-dist // 基于maven-assembly-plugin插件的项目打包模块
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
set -e set -e
SQLREST_VERSION=1.0.0 SQLREST_VERSION=1.1.0
BUILD_DOCKER_DIR="$( cd "$( dirname "$0" )" && pwd )" BUILD_DOCKER_DIR="$( cd "$( dirname "$0" )" && pwd )"
PROJECT_ROOT_DIR=$( dirname "$BUILD_DOCKER_DIR") PROJECT_ROOT_DIR=$( dirname "$BUILD_DOCKER_DIR")
DOCKER_SQLREST_DIR=$BUILD_DOCKER_DIR/sqlrest DOCKER_SQLREST_DIR=$BUILD_DOCKER_DIR/sqlrest
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.0.0</version> <version>1.1.0</version>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<version>1.0.0</version> <version>1.1.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>sqlrest-cache</artifactId> <artifactId>sqlrest-cache</artifactId>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<version>1.0.0</version> <version>1.1.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>sqlrest-common</artifactId> <artifactId>sqlrest-common</artifactId>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<version>1.0.0</version> <version>1.1.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>sqlrest-core</artifactId> <artifactId>sqlrest-core</artifactId>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<version>1.0.0</version> <version>1.1.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>sqlrest-dist</artifactId> <artifactId>sqlrest-dist</artifactId>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<version>1.0.0</version> <version>1.1.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>sqlrest-executor</artifactId> <artifactId>sqlrest-executor</artifactId>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<version>1.0.0</version> <version>1.1.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>sqlrest-gateway</artifactId> <artifactId>sqlrest-gateway</artifactId>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<version>1.0.0</version> <version>1.1.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>sqlrest-manager</artifactId> <artifactId>sqlrest-manager</artifactId>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<version>1.0.0</version> <version>1.1.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>sqlrest-persistence</artifactId> <artifactId>sqlrest-persistence</artifactId>
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>sqlrest-parent</artifactId> <artifactId>sqlrest-parent</artifactId>
<groupId>com.gitee.sqlrest</groupId> <groupId>com.gitee.sqlrest</groupId>
<version>1.0.0</version> <version>1.1.0</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>sqlrest-template</artifactId> <artifactId>sqlrest-template</artifactId>
......
@echo off @echo off
set APP_VERSION=1.0.0 set APP_VERSION=1.1.0
echo "Clean Project ..." echo "Clean Project ..."
call mvn clean -f pom.xml call mvn clean -f pom.xml
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment