A 项目 通过deploy 上传到私服, 并且 被 B 项目 通过 pom 下来了。 但是无法import?

概述

需求

两个模块, 业务模块B 引用 工具模块A

工具模块A 已经 deploy 到 maven 私服了。
业务模块B 也通过 pom 把 工具模块A 下载下来(依赖中存在)

但是 业务模块B 中无法 import 工具模块A 的类
模块A的无法引入

  1. 通过判断, 工具模块A 应该成功下载成依赖了。

问题

  1. 是不是 工具模块中 暴露的类 要做 其他特殊处理。
  2. 是不是 我的流程有问题。


回答:


将来被引用的模块,部分 plugin 打包时候要跳过。

      <plugin>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-maven-plugin</artifactId>

<configuration>

<skip>true</skip>

</configuration>

</plugin>


回答:

楼上+1,使用命令去下载依赖,再导入开发工具,像idea就经常抽风

以上是 A 项目 通过deploy 上传到私服, 并且 被 B 项目 通过 pom 下来了。 但是无法import? 的全部内容, 来源链接: utcz.com/p/944875.html

回到顶部