When compiling mvn clean in projectA, I get an error message that does not exist . The error refers to a package imported from projectB, which is a Spring boot project (projectA is a normal maven project). projectB compiles nicely and the resulting jar is in my local maven repository.
projectB is included in projectA:
<projectB.version>1.0.4-SNAPSHOT</projectB.version> [...] <dependency> <groupId>de.company</groupId> <artifactId>projectB</artifactId> <version>${projectB.version}</version> </dependency>
I already did the usual cleanup and also manually deleted the contents of the local repo for the project.
source share