Bonjour,

J'ai une erreur lors de l'exécution d'un projet Maven sur NetBeans

Mon pom.xml
Code XML : 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
<repository>
   <id>repository.jboss.org</id>
   <name>JBoss</name>
   <url>http://repository.jboss.org/maven2</url>
   <snapshots>
    <enabled>false</enabled>
   </snapshots>
  </repository>
 
<dependency>
   <groupId>org.jboss.el</groupId>
   <artifactId>jboss-el</artifactId>
   <version>2.0.1.GA</version>
   <exclusions>
    <exclusion>
     <groupId>javax.el</groupId>
     <artifactId>el-api</artifactId>
    </exclusion>
   </exclusions>
  </dependency>
Downloading: http://repo1.maven.org/maven2/org/jb...l-2.0.1.GA.jar
Unable to find resource 'org.jboss.el:jboss-el:jar:2.0.1.GA' in repository central (http://repo1.maven.org/maven2)
------------------------------------------------------------------------
BUILD ERROR
------------------------------------------------------------------------
Failed to resolve artifact.

Missing:
----------
1) org.jboss.el:jboss-el:jar:2.0.1.GA

Try downloading the file manually from the project website.

Then, install it using the command:
mvn install:install-file -DgroupId=org.jboss.el -DartifactId=jboss-el -Dversion=2.0.1.GA -Dpackaging=jar -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=org.jboss.el -DartifactId=jboss-el -Dversion=2.0.1.GA -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

Path to dependency:
1) fr.bdf:graal:war:1.0.0-SNAPSHOT
2) org.jboss.el:jboss-el:jar:2.0.1.GA

----------
1 required artifact is missing.

for artifact:
fr.bdf:graal:war:1.0.0-SNAPSHOT

from the specified remote repositories:
central (http://repo1.maven.org/maven2),
repository.jboss.org (http://repository.jboss.org/maven2)
Quelqu'un saurait-il m'indiquer comment résoudre ce problème ?

Merci d'avance pour votre aide.