Bonjour à tous

je dispose d'un projet java que je veux "maveniser"
comme référence j'ai ce fichier

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
 <project  xmlns="http://maven.apache.org/POM/4.0.0" 	 	      	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 	http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
    <groupId> [ORGANISATION] </groupId>
    <artifactId> [PROJET] </artifactId>
    <name> [NOM DU PROJET] </name>
   <version> [VERSION DU PROJET] </version>
  <build>
        <sourceDirectory> [REPERTOIRE DES SOURCES] </sourceDirectory>
        <plugins>
           <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-compiler-plugin</artifactId>
              <configuration>
                  <source>1.5</source>
                  <target>1.5</target>
              </configuration>
           </plugin>
        </plugins>
  </build>
  <properties>
  	<sonar.light>true</sonar.light>
  </properties>
</project>
Mon projet a une librairie je n'arrive pas à intégrer cette librairie dans ce fichier pom.xml du coup j'ai des erreur à la compilation avec maven
Mon problème est que je dispose des fichier .jar qui constituent la librairie du projet que je veux mettre dans le fichier pom.xml
s'il vous plait est ce que quelqu'un peut m'aider pour la gestion de cette bibliothèque dans le pom.xml