初始化提交项目
This commit is contained in:
parent
ada94a388a
commit
f10fb2f6d8
|
|
@ -7,14 +7,14 @@
|
|||
<version>2.1.0-jdk8-snapshot</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>${project.artifactId}</name>
|
||||
<description>芋道项目基础脚手架</description>
|
||||
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
||||
<description>OMS管理系统</description>
|
||||
<modules>
|
||||
<module>hangtag-dependencies</module>
|
||||
<module>hangtag-framework</module>
|
||||
<module>hangtag-server</module>
|
||||
<module>hangtag-module-system</module>
|
||||
<module>hangtag-module-infra</module>
|
||||
<module>hangtag-module-oms</module>
|
||||
</modules>
|
||||
<properties>
|
||||
<lombok.version>1.18.30</lombok.version>
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@
|
|||
<module name="hangtag-spring-boot-starter-job" />
|
||||
<module name="hangtag-spring-boot-starter-redis" />
|
||||
<module name="hangtag-spring-boot-starter-test" />
|
||||
<module name="hangtag-module-gkbiz-biz" />
|
||||
<module name="hangtag-spring-boot-starter-biz-ip" />
|
||||
<module name="hangtag-spring-boot-starter-security" />
|
||||
<module name="hangtag-module-system-api" />
|
||||
|
|
@ -28,6 +27,7 @@
|
|||
<module name="hangtag-spring-boot-starter-biz-tenant" />
|
||||
<module name="hangtag-module-system-biz" />
|
||||
<module name="hangtag-common" />
|
||||
<module name="hangtag-module-oms-biz" />
|
||||
<module name="hangtag-spring-boot-starter-mybatis" />
|
||||
<module name="hangtag-spring-boot-starter-mq" />
|
||||
<module name="hangtag-spring-boot-starter-excel" />
|
||||
|
|
|
|||
|
|
@ -43,6 +43,10 @@
|
|||
<file url="file://$PROJECT_DIR$/hangtag-module-infra/hangtag-module-infra-biz/src/main/resources" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/hangtag-module-infra/src/main/java" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/hangtag-module-infra/src/main/resources" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/hangtag-module-oms/hangtag-module-oms-biz/src/main/java" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/hangtag-module-oms/hangtag-module-oms-biz/src/main/resources" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/hangtag-module-oms/src/main/java" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/hangtag-module-oms/src/main/resources" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/hangtag-module-system/hangtag-module-system-api/src/main/java" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/hangtag-module-system/hangtag-module-system-api/src/main/resources" charset="UTF-8" />
|
||||
<file url="file://$PROJECT_DIR$/hangtag-module-system/hangtag-module-system-biz/src/main/java" charset="UTF-8" />
|
||||
|
|
|
|||
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag</artifactId>
|
||||
<version>2.1.0-jdk8-snapshot</version>
|
||||
</parent>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag-module-oms</artifactId>
|
||||
<version>2.1.0-jdk8-snapshot</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>${project.artifactId}</name>
|
||||
<modules>
|
||||
<module>hangtag-module-oms-biz</module>
|
||||
</modules>
|
||||
</project>
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag-module-oms</artifactId>
|
||||
<version>2.1.0-jdk8-snapshot</version>
|
||||
</parent>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag-module-oms-biz</artifactId>
|
||||
<version>2.1.0-jdk8-snapshot</version>
|
||||
<name>${project.artifactId}</name>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag-spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag-spring-boot-starter-security</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag-spring-boot-starter-mybatis</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag-spring-boot-starter-test</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag-spring-boot-starter-excel</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
|
@ -4,11 +4,11 @@
|
|||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<groupId>cn.hangtag</groupId>
|
||||
<artifactId>hangtag-module-gkbiz</artifactId>
|
||||
<artifactId>hangtag-module-oms</artifactId>
|
||||
<version>${revision}</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>hangtag-module-gkbiz-biz</artifactId>
|
||||
<artifactId>hangtag-module-oms-biz</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>${project.artifactId}</name>
|
||||
|
|
@ -10,9 +10,9 @@
|
|||
</parent>
|
||||
<packaging>pom</packaging>
|
||||
<name>${project.artifactId}</name>
|
||||
<artifactId>hangtag-module-gkbiz</artifactId>
|
||||
<artifactId>hangtag-module-oms</artifactId>
|
||||
|
||||
<modules>
|
||||
<module>hangtag-module-gkbiz-biz</module>
|
||||
<module>hangtag-module-oms-biz</module>
|
||||
</modules>
|
||||
</project>
|
||||
|
|
@ -28,7 +28,7 @@ public class ProjectReactor {
|
|||
private static final String GROUP_ID = "cn.hangtag";
|
||||
private static final String ARTIFACT_ID = "hangtag";
|
||||
private static final String PACKAGE_NAME = "cn.hangtag";
|
||||
private static final String TITLE = "挂卡管理系统";
|
||||
private static final String TITLE = "OMS管理系统";
|
||||
|
||||
/**
|
||||
* 白名单文件,不进行重写,避免出问题
|
||||
|
|
@ -46,7 +46,7 @@ public class ProjectReactor {
|
|||
String groupIdNew = "cn.hangtag";
|
||||
String artifactIdNew = "hangtag";
|
||||
String packageNameNew = "cn.hangtag";
|
||||
String titleNew = "挂卡管理系统";
|
||||
String titleNew = "OMS管理系统";
|
||||
String projectBaseDirNew = projectBaseDir + "-new"; // 一键改名后,“新”项目所在的目录
|
||||
log.info("[main][检测新项目目录 ({})是否存在]", projectBaseDirNew);
|
||||
if (FileUtil.exist(projectBaseDirNew)) {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# 标题
|
||||
VITE_APP_TITLE=挂卡管理系统
|
||||
VITE_APP_TITLE=OMS管理系统
|
||||
|
||||
# 项目本地运行端口号
|
||||
VITE_PORT=80
|
||||
|
|
|
|||
4
pom.xml
4
pom.xml
|
|
@ -15,7 +15,7 @@
|
|||
<!-- 各种 module 拓展 -->
|
||||
<module>hangtag-module-system</module>
|
||||
<module>hangtag-module-infra</module>
|
||||
<module>hangtag-module-gkbiz</module>
|
||||
<module>hangtag-module-oms</module>
|
||||
<!-- <module>hangtag-module-member</module>-->
|
||||
<!-- <module>hangtag-module-bpm</module>-->
|
||||
<!-- <module>hangtag-module-report</module>-->
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
</modules>
|
||||
|
||||
<name>${project.artifactId}</name>
|
||||
<description>挂卡管理系统</description>
|
||||
<description>OMS管理系统</description>
|
||||
|
||||
<properties>
|
||||
<revision>2.1.0-jdk8-snapshot</revision>
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ services:
|
|||
NODE_ENV:
|
||||
ENV=${NODE_ENV:-production}
|
||||
PUBLIC_PATH=${PUBLIC_PATH:-/}
|
||||
VUE_APP_TITLE=${VUE_APP_TITLE:-挂卡管理系统}
|
||||
VUE_APP_TITLE=${VUE_APP_TITLE:-OMS管理系统}
|
||||
VUE_APP_BASE_API=${VUE_APP_BASE_API:-/prod-api}
|
||||
VUE_APP_APP_NAME=${VUE_APP_APP_NAME:-/}
|
||||
VUE_APP_TENANT_ENABLE=${VUE_APP_TENANT_ENABLE:-true}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ REDIS_HOST=hangtag-redis
|
|||
## admin
|
||||
NODE_ENV=production
|
||||
PUBLIC_PATH=/
|
||||
VUE_APP_TITLE=挂卡管理系统
|
||||
VUE_APP_TITLE=OMS管理系统
|
||||
VUE_APP_BASE_API=/prod-api
|
||||
VUE_APP_APP_NAME=/
|
||||
VUE_APP_TENANT_ENABLE=true
|
||||
|
|
|
|||
Loading…
Reference in New Issue