Hervé BOUTEMY <herve.bout...@free.fr> wrote: > Looking at the log, I see "Could not find artifact com.x.commonlibrary:cl- > parent:pom:1.5.39-20210922124845805-SNAPSHOT" > > It seems you referenced parent POM as "1.5.39-20210922124845805-SNAPSHOT" > when: > 1. you should not add the "-SNAPSHOT" suffix but "1.5.39-20210922124845805": > Maven detects that the suffix represents a SNAPSHOT
I’d expect it the other way around. Use 1.5.39-SNAPSHOT in pom.xml and Maven will use the latest snapshot for that version. That’s the whole point of snapshot versions, right? https://maven.apache.org/guides/getting-started/index.html#What_is_a_SNAPSHOT_version Nils.