How the version is picked #671
-
|
When I use plugin config without version then which version is picked by spring boot app? <plugin>
<groupId>io.github.ascopes</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin> |
Beta Was this translation helpful? Give feedback.
Answered by
ascopes
May 21, 2025
Replies: 1 comment 3 replies
-
|
If you mean the plugin version, you need to provide a version in your POM or parent POM, otherwise it is down to Maven as to how it handles it (as far as I am aware, it is erroneous to omit it). The most recent version is 3.2.2 |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
ascopes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you mean the plugin version, you need to provide a version in your POM or parent POM, otherwise it is down to Maven as to how it handles it (as far as I am aware, it is erroneous to omit it).
The most recent version is 3.2.2