问题遇到的现象和发生背景
项目中有一个公共模块,项目内的其他模块引入了该公共模块.公共模块install时是没有问题的,其中也有用到lombok和mybatisplus的相关注解.而引用此公共类的其他模块package和Install时则显示lombok中的相关包不存在.
公共模块和出现此问题的一个模块pom文件如下.
公共模块,其中某些引用的第三方依赖没有列出来.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.xxx</groupId>
<artifactId>xxx-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>xxx-common</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.3.1.tmp</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.0.4.RELEASE</version>
<executions>
<execution>
<phase>none</phase>
</execution>
</executions>
<configuration>
<classifier>execute</classifier>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
</project>
引用此公共类的某一模块
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.xxx</groupId>
<artifactId>xxx-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>xxx_xxxxx</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.xxx</groupId>
<artifactId>xxx-common</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
仓库设置的应该没问题,也有勾选delegate ide build/run actions to maven 尝试,还是没有成功.
相同项目的另一个升级过springboot和springcloud的版本则没有此问题.此版本是升级之前的.也有尝试删除掉所有的依赖并重新下载,因为项目是在内网,只有通过内网的公共仓库,下载的时候没有相关报错,应该不是包的问题.maven中也没有依赖的爆红.