Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
[maven] Utiliser les infos de maven dans une classe Java
Article publié le 20/12/2008 12:00:23Dans mes applications Java, j’utilise différents jars qui contiennent de nombreux codes dont j’ai souvent besoin. Maven est vraiment très pratique pour gérer les dépendances, et pour me générer automatiquement un jar exécutable.
Seulement, que ce soit pour une application exécutable ou un simple jar dont dépendent d’autres applications, il est bon de pouvoir afficher un "A propos" qui nous retourne certaines informations, comme le numéro de version.
Puisque toutes ces informations se trouvent dans un pom.xml (Project Object Model), il serait redondant (et peu souple au niveau de la maintenance) de retrouver ces informations dans un fichier properties ou pire encore, codées en dur.
Ma première tentative fut d’utiliser le fichier que maven génère dans le jar :
Code Java (42 lignes)
package be.gaudry.model.config; import java.util.Properties; /** * @date 20 déc. 2008 * @author Steph GAUDRY * */ public class POMHelper { static{ try { props.load(POMHelper.class.getClassLoader().getResourceAsStream("META-INF/maven/be.gaudry.broldev/broldev.core.model/pom.properties")); } } /** * * @return the version or null */ return props.getProperty("version"); } /** * * @return the groupId or null */ return props.getProperty("groupId"); } /** * * @return the artifactId or null */ return props.getProperty("artifactId"); } }
Nous pouvons ensuite lier avec un fichier de langue le message correct en fonction que la méthode retourne null, ou un String.
Mais cela ne me convenait pas, alors j’ai cherché du côté de maven s’il pouvait faire le travail pour moi, et il suffit d’ajouter une ligne dans le pom pour mettre ces informations à disposition lors de la commande maven "install" ou "assembly" :
Code XML (27 lignes)
‹!-- Adds a Class-Path entry to the manifest to do an executable jar --› ‹plugin› ‹groupId›org.apache.maven.plugins‹/groupId› ‹artifactId›maven-jar-plugin‹/artifactId› ‹configuration› ‹archive› ‹manifest› ‹addClasspath›true‹/addClasspath› ‹mainClass› be.gaudry.about.AboutBrolDevModel ‹/mainClass› ‹!-- Maven already provides a hook to have the version number written to a jars MANIFEST.MF This instructs Maven to add the following headers to the MANIFEST.MF of your jar: Implementation-Title: display-version Implementation-Version: 1.0-SNAPSHOT Implementation-Vendor-Id: test --› ‹addDefaultImplementationEntries›true‹/addDefaultImplementationEntries› ‹/manifest› ‹/archive› ‹/configuration› ‹/plugin›
Il suffit ensuite d’invoquer la méthode suivante :
Code Java (1 ligne)
POMHelper.class.getPackage().getImplementationVersion();
Vous pouvez remplacer POMHelper par le nom de votre classe.
Un article de Steph
Source : indéterminée
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-447.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.