Je veux connaître la version du plugin installé. Quelle commande peut le faire ?
Réponses
Trop de publicités?
Gaurav_Java
Points
183
Conny Kreyßel
Points
137
arcone
Points
3276
Ajoutez ceci à votre fichier pom.xml
et vous obtiendrez le résultat sur mvn clean install
:
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>display-dependency-updates</goal>
<goal>display-plugin-updates</goal>
<goal>display-property-updates</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
Si vous voulez juste le faire une fois :
mvn versions:display-plugin-updates
lovestackh343
Points
167