Sometimes maven doesn't reach some dependency.
Surely by my fault, but I can build lots of projects, without problems with many many dependencies...
In this occasion I'm trying to get:
<dependency> <groupId>org.richfaces.cdk</groupId> <artifactId>maven-cdk-plugin</artifactId> <version>4.3.1.Final</version> </dependency> and I get:
[ERROR] Plugin org.richfaces.cdk:maven-cdk-plugin:4.3.1.Final or one of its depe ndencies could not be resolved: Could not find artifact org.richfaces.cdk:maven- cdk-plugin:jar:4.3.1.Final in central (https://repo.maven.apache.org/maven2) -> [Help 1] I'm currently using maven 3.3.9 with jdk 1.8. I've also added a repository tag in my active profile referece in the settings.xml:
... <activeProfiles> <!--make the profile active all the time --> <activeProfile>nexus</activeProfile> </activeProfiles> <profiles> ... <profile> <id>nexus</id> <!--Override the repository (and pluginRepository) "central" from the Maven Super POM to activate snapshots for both! --> <repositories> <repository> <id>repoId022</id> <name>repositoryId022</name> <url>https://mvnrepository.com/artifact/</url> </repository> ... I've checked in my browser and I can reach the dependency path and download it without problems.
Now I'm out of ideas...can u suggest anything? ThankS!