In our previous blog post dedicated to Python and Java, we saw how Maven can orchestrate a unified build process for these two languages.
But most of the time, all artifacts within a build should take the same version. It was not the case in the sample project of our previous blog post, so let's find a way to unify this.
For Java it's easy: JARs and WARs are using the version located in their respective POMs, 0.1 in this case:
1 <project> 2 <groupid>com.shiningpanda</groupid> 3 <artifactid>jsample</artifactid> 4 <version>0.1</version ...