We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG描述 具体步骤2 安装公共库到本地仓库:
mvn -pl ./common,./auth/authentication-client install
执行后报错。 分析后发现少了一个facade的jar包
修改为 mvn -pl ./common,./facade,./auth/authentication-client install
执行又报错。
分析发现的父文件中maven插件打包时执行repackage,暂时注释后,再执行成功构建。
-- 构建环境为 mvn9
截图
环境
操作系统、组件版本、数据库等
The text was updated successfully, but these errors were encountered:
执行后报错。 分析后发现少了一个facade的jar包 打包facade 发现报 Unable to find main class 找到facade pom文件增加 <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build>
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build>
才能打包成功 -- 构建环境为 apache-maven-3.6.0
截图 环境
Sorry, something went wrong.
No branches or pull requests
BUG描述
具体步骤2
安装公共库到本地仓库:
mvn -pl ./common,./auth/authentication-client install
执行后报错。
分析后发现少了一个facade的jar包
修改为 mvn -pl ./common,./facade,./auth/authentication-client install
执行又报错。
分析发现的父文件中maven插件打包时执行repackage,暂时注释后,再执行成功构建。
-- 构建环境为 mvn9
截图
环境
操作系统、组件版本、数据库等
The text was updated successfully, but these errors were encountered: