# workstation-framework **Repository Path**: founderTM/workstation-framework ## Basic Information - **Project Name**: workstation-framework - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-16 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # parent 集合工程 install 1. 第一次 install需要把pom中配置的module全部下载 2. 每次更新 更新 pom.xml中的modules需要重新install parent工程 构建命令: ```shell clean install -N ``` # 构建指定工程下的项目,并且连带依赖项目打包 `-P` 后面是相应的环境目录 使用reactor 打包,需要把打包的工程都clone到 juhesaas-parent同级目录 例如:构建 juhesaas-user-center-client 项目打包testing环境 ```shell clean install -pl juhesaas:juhesaas-user-center-client -am -amd -Ptesting ``` 只需要构建指定的工程不需要全部打包,注意:-pl 后面多个项目需要使用 `,` 来分割 ``` clean install -pl ../juhesaas-user-center-common,../juhesaas-user-center-common -Ptesting ``` 如果只是构建juhesaas-user-center-client,不需要构建依赖工程,只需要在juhesaas-user-center-client工程目录 ```shell clean package -Ptesting ```