Pārlūkot izejas kodu

Merge branch 'master' of https://gitee.ltd/pigx/pigx

lishangbu 6 gadi atpakaļ
vecāks
revīzija
b64bde0221

+ 0 - 1
.editorconfig

@@ -10,7 +10,6 @@ continuation_indent_size = 8
 end_of_line = lf
 
 [*.{js, html}]
-charset = utf-8
 indent_style = space
 indent_size = 2
 end_of_line = lf

+ 1 - 1
.gitignore

@@ -57,5 +57,5 @@ Servers
 upload
 gen_code
 
-### node
+### node ###
 node_modules

+ 14 - 14
LICENSE

@@ -1,14 +1,14 @@
-     Copyright (c) 2018-2025, lengleng All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
-
-Redistributions of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- Neither the name of the pig4cloud.com developer nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
- Author: lengleng (wangiegie@gmail.com)
+    Copyright (c) 2018-2025, lengleng All rights reserved.
+
+协议和授权
+pigX并非一个开源软件,作者保留全部的权利。
+
+🌹权益
+个人使用
+允许用于学习、毕设等。
+
+🚫禁止
+将本项目的部分或全部代码和资源进行任何形式的再发行(尤其上传GitHub、Gitee )
+利用本项目的部分或全部代码和资源进行任何商业行为
+
+    Author: lengleng (wangiegie@gmail.com)

+ 10 - 0
README.md

@@ -1,3 +1,13 @@
+## pigx 2.0
+[pigx 2.0 部署文档](doc/md/deploy.md)  
+[pigx 2.0 新特性说明  ](https://www.bilibili.com/video/av37786337)   
+[pigx 2.0 从检出到启动](https://www.bilibili.com/video/av37695530)  
+[pigx pro新建微服务模块(一)](https://www.bilibili.com/video/av37737139)  
+[pigx pro新建微服务模块(二)](https://www.bilibili.com/video/av37740030)  
+[pigx pro新建微服务模块(三)](https://www.bilibili.com/video/av37743341)  
+[pigx pro新建微服务模块(四)](https://www.bilibili.com/video/av37774264)  
+
+
 ## 协议和授权
 
 pigX并非一个开源软件,作者保留全部的权利。

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 31 - 22
doc/db/2pigxx.sql


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 2 - 7
doc/db/3pigxx_ac.sql


+ 67 - 26
doc/md/deploy.md

@@ -1,8 +1,23 @@
 ### 写在最前
-**如果想快速部署pigX,请完全参考本篇文档,如果有个性化的修改(例如:oauth2配置、token 个性化需求),请参考本篇运行起来以后,自行修改。循序渐进**
+**如果想快速部署pigX,请完全参考本篇文档。**    
+如果有个性化的修改,请参考本篇运行起来以后,自行修改。循序渐进
+
+### 特别说明 
+- 确保你的IDE 已经安装lombok 
+- 代码git clone ,不要下载 zip 源码包
+- 建议使用 IDEA 2018+ 启动效果会更好
+- 内存较小开发机 每个微服务建议设置  -Xms128m -Xmx256m  
+![](http://a.pigx.top/20181210181538.png)
+
+### 环境说明
+- jdk 1.8 
+- mysql 5.7
+- redis 3.2+
+- node 8.0+
+- npm 6.0+
+- zookeeper 3.4+
+
 
-### 架构图
-![image](http://p0hpm86wj.bkt.clouddn.com/PIGX.png)
 ### 一、项目下载
 
 ```
@@ -10,16 +25,27 @@ git https://www.gitee.wang/pig/pigx.git
 ```
 
 ### 二、配置数据库
-
+- 参数说明
 ```
 版本: mysql5.7+
+默认字符集: utf8mb4
+默认排序规则: utf8mb4_general_ci
+```
+
+- 脚本说明 
+2.0 把核心库和业务库分开,建议使用两个库   
+
+```sql
+1scheme.sql    建库语句
+2pigxx.sql     核心数据库
+3pigxx_ac.sql   工作流相关数据库
 
 ```
-基本参数如下:
-![image](https://gitee.com/uploads/images/2018/0610/142651_72fad599_410595.png)
 
 
-### 三、pig配置修改
+### 三、pig配置修改   (建议批量替换)
+
+- redis 修改  
 pigx/pigx-config/src/main/resources/config/application-dev.yml
 
 ```
@@ -27,44 +53,59 @@ pigx/pigx-config/src/main/resources/config/application-dev.yml
 spring:
   redis:
     password:
-    host: localhost
-```
-pigx/pigx-config/src/main/resources/config/pigx-auth-dev.yml  
-pigx/pigx-config/src/main/resources/config/pigx-upms-dev.yml
+    host: pigx-redis
+``` 
+- 数据库配置   
+pigx/pigx-config/src/main/resources/config/pigx-auth-dev.yml    
+pigx/pigx-config/src/main/resources/config/pigx-upms-dev.yml  
+pigx/pigx-config/src/main/resources/config/pigx-codegen-dev.yml  
+pigx/pigx-config/src/main/resources/config/pigx-daemon-dev.yml  
+pigx/pigx-config/src/main/resources/config/pigx-activiti-dev.yml  
 
 ```
 # 数据源
 spring:
   datasource:
-    type: com.zaxxer.hikari.HikariDataSource
-    driver-class-name: com.mysql.cj.jdbc.Driver
     username: root
     password: lengleng
-    url: jdbc:pigx-mysql://mysql:3306/pigx?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
+    url: jdbc:mysql://pigx-mysql:3306/pigxx?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai
 ```
 
-### 四、配置本地hosts
+### 四、配置本地hosts 建议使用 switchhost)
+
+修改本地hosts文件中存在以下片段
 
-从1.6.3开始,项目采用HOSTS配置ip的方式,所以开始运行项目前确保你的本机hosts文件中存在以下片段(以完全本机开发为例):
 
 ```
-# 本地测试环境
+# 本地测试环境  
 127.0.0.1   pigx-mysql
-127.0.0.1	  pigx-zookeeper
-127.0.0.1		pigx-redis
+127.0.0.1	pigx-zookeeper
+127.0.0.1	pigx-redis
 127.0.0.1	pigx-gateway
 127.0.0.1	pigx-eureka
 ```
+### 五、启动顺序(基础模块) 
+```java
+1. PigxEurekaApplication   
+2. PigxConfigApplication  
+3. PigxGatewayApplication  
+4. PigxAuthApplication 
+5. PigxAdminApplication  
+```
 
-### 五、pigx-ui:
+### 六、启动前端
 
 ```
 git clone https://www.gitee.wang/pig/pigx-ui.git
+
+# 安装cnpm 镜像
+npm run pre
+
+# 安装依赖
+cnpm install
+
+# 启动
 npm run dev
 ```
-请确保启动顺序
-1.eureka   
-2.config  
-3.gateway  
-4.auth  
-5.upms  
+
+

+ 0 - 3
docker-compose.yml

@@ -81,8 +81,6 @@ services:
     restart: always
     image: pigx-daemon
     container_name: pigx-daemon
-    ports:
-      - 5002:5002
 
   pigx-codegen:
     build:
@@ -92,7 +90,6 @@ services:
     image: pigx-codegen
     container_name: pigx-codegen
 
-
   pigx-activiti:
     build:
       context: ./

+ 4 - 4
pigx-auth/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-auth</artifactId>
@@ -42,13 +42,13 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-upms-api</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--security-->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-security</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--JDBC相关-->
 		<dependency>
@@ -64,7 +64,7 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-cache</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--spring security 、oauth、jwt依赖-->
 		<dependency>

+ 2 - 2
pigx-common/pigx-common-cache/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-common</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-common-cache</artifactId>
@@ -38,7 +38,7 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--缓存依赖-->
 		<dependency>

+ 1 - 1
pigx-common/pigx-common-core/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-common</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-common-core</artifactId>

+ 2 - 2
pigx-common/pigx-common-gateway/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-common</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-common-gateway</artifactId>
@@ -36,7 +36,7 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<dependency>
 			<groupId>org.springframework.cloud</groupId>

+ 1 - 1
pigx-common/pigx-common-job/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-common</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-common-job</artifactId>

+ 3 - 3
pigx-common/pigx-common-log/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-common</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-common-log</artifactId>
@@ -38,13 +38,13 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--UPMS接口模块-->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-upms-api</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--安全依赖获取上下文信息-->
 		<dependency>

+ 3 - 3
pigx-common/pigx-common-security/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-common</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-common-security</artifactId>
@@ -38,7 +38,7 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--安全模块-->
 		<dependency>
@@ -49,7 +49,7 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-upms-api</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 	</dependencies>
 </project>

+ 1 - 1
pigx-common/pigx-common-swagger/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-common</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-common-swagger</artifactId>

+ 2 - 2
pigx-common/pigx-common-transaction/pom.xml

@@ -5,7 +5,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-common</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-common-transaction</artifactId>
@@ -17,7 +17,7 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--lcn 模块端控制依赖-->
 		<dependency>

+ 1 - 1
pigx-common/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-common</artifactId>

+ 1 - 1
pigx-config/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-config</artifactId>

+ 1 - 1
pigx-eureka/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-eureka</artifactId>

+ 4 - 4
pigx-gateway/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-gateway</artifactId>
@@ -46,7 +46,7 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-gateway</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--配置中心客户端-->
 		<dependency>
@@ -63,13 +63,13 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--缓存-->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-cache</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--接口文档-->
 		<dependency>

+ 2 - 2
pigx-upms/pigx-upms-api/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-upms</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-upms-api</artifactId>
@@ -38,7 +38,7 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 	</dependencies>
 </project>

+ 7 - 7
pigx-upms/pigx-upms-biz/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-upms</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-upms-biz</artifactId>
@@ -37,25 +37,25 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-upms-api</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--日志处理-->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-log</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--缓存依赖-->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-cache</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--swagger-->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-swagger</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--eureka 客户端-->
 		<dependency>
@@ -71,13 +71,13 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-security</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--支持动态路由配置 -->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-gateway</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--mybatis-->
 		<dependency>

+ 1 - 1
pigx-upms/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-upms</artifactId>

+ 6 - 6
pigx-visual/pigx-activiti/pom.xml

@@ -23,7 +23,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-visual</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-activiti</artifactId>
@@ -41,17 +41,17 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-upms-api</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-swagger</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<dependency>
 			<groupId>mysql</groupId>
@@ -117,12 +117,12 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-swagger</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-security</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--undertow容器-->
 		<dependency>

+ 4 - 4
pigx-visual/pigx-codegen/pom.xml

@@ -6,7 +6,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-visual</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-codegen</artifactId>
@@ -35,19 +35,19 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--swagger-->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-swagger</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--安全模块-->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-security</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--代码生成模板引擎-->
 		<dependency>

+ 5 - 5
pigx-visual/pigx-daemon/pom.xml

@@ -23,7 +23,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-visual</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-daemon</artifactId>
@@ -41,12 +41,12 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-job</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-swagger</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--mybatis-->
 		<dependency>
@@ -74,13 +74,13 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-swagger</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!-- 安全模块-->
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-security</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--web 模块-->
 		<dependency>

+ 3 - 3
pigx-visual/pigx-monitor/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-visual</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-monitor</artifactId>
@@ -36,12 +36,12 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-cache</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 		<!--监控服务端-->
 		<dependency>

+ 1 - 1
pigx-visual/pigx-sso-client-demo/pom.xml

@@ -29,7 +29,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-visual</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<dependencies>

+ 2 - 2
pigx-visual/pigx-tx-manager/pom.xml

@@ -5,7 +5,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx-visual</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-tx-manager</artifactId>
@@ -63,7 +63,7 @@
 		<dependency>
 			<groupId>com.pig4cloud</groupId>
 			<artifactId>pigx-common-core</artifactId>
-			<version>1.8.0</version>
+			<version>2.0.0</version>
 		</dependency>
 	</dependencies>
 	<build>

+ 1 - 1
pigx-visual/pom.xml

@@ -24,7 +24,7 @@
 	<parent>
 		<groupId>com.pig4cloud</groupId>
 		<artifactId>pigx</artifactId>
-		<version>1.8.0</version>
+		<version>2.0.0</version>
 	</parent>
 
 	<artifactId>pigx-visual</artifactId>

+ 1 - 1
pom.xml

@@ -24,7 +24,7 @@
 
 	<groupId>com.pig4cloud</groupId>
 	<artifactId>pigx</artifactId>
-	<version>1.8.0</version>
+	<version>2.0.0</version>
 	<name>${project.artifactId}</name>
 	<packaging>pom</packaging>
 	<organization>