Amigos
Estou utilizando MAVEN em um projeto. Já consegui configurar tudo direitinho só que MANUALMENTE, configurei as dependencias manualmente. Quando fui configurar para o MAVEN fazer o DOWNLOAD ele dá erro em alguns JARs, mais especificamente quando tento adicionar o STRUTS e HIBERNATE ele dá erro nas dependencias:
POM.xml
<dependency>
<groupId>struts</groupId>
<artifactId>struts</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.0.5</version>
</dependency>
Erro:
- javax.sql:jdbc-stdext:jar:2.0
Try downloading the file manually from:
http://java.sun.com/products/jdbc/download.html
Then, install it using the command:
mvn install:install-file -DgroupId=javax.sql -DartifactId=jdbc-stdext
-Dversion=2.0 -Dpackaging=jar -Dfile=/path/to/file
Path to dependency:- foo.bah.web:foo-bah-web:war:1.0.0
- struts:struts:jar:1.1
- javax.sql:jdbc-stdext:jar:2.0
- javax.transaction:jta:jar:1.0.1b
Try downloading the file manually from:
http://java.sun.com/products/jta
Then, install it using the command:
mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta
-Dversion=1.0.1b -Dpackaging=jar -Dfile=/path/to/file
Path to dependency:- foo.bah.web:foo-bah-web:war:1.0.0
- javax.transaction:jta:jar:1.0.1b
2 required artifacts are missing.
for artifact:
foo.bah.web:foo-bah-web:war:1.0.0
from the specified remote repositories:
central (http://repo1.maven.org/maven2)
Alguém pode me dizer como acertar esse erro, mas tem um detalhe. Eu vou enviar esse projeto para uma empresa então não pode haver configuração manual, tudo deve estar configurado no POM.xml. É possivel???
Obrigado colegas.
Att,
Rodrigo Matos