Hi everyone
I've just updated my own project pointing to this maven dependency.
<dependency>
<groupId>org.jboss.jbossas</groupId>
<artifactId>jboss-as-ejb3</artifactId>
<version>6.1.0.Final</version>
<scope>provided</scope>
</dependency>
At maven compile time i'm getting these warnings, and subsecuents build failures.
[WARNING] The POM for com.sun.istack:istack-commons-runtime:jar:1.1 is missing, no dependency information available
[WARNING] The POM for woodstox:wstx-asl:jar:3.2.1 is missing, no dependency information available
[WARNING] The POM for ws-commons:policy:jar:1.0 is missing, no dependency information available
Using the nexus public repository, and browsing the contents im able to see that dependencies above are not present anymore.
https://repository.jboss.org/nexus/index.html#nexus-search;quick~istack-commons-runtime
Couple of notes
1. These dependencies are transitive ones.
2. Im not using them directly, so they are referenced by other jboss artifacts as shown in maven depency graph
3. These issues were not present in jboss-as-ejb3:6.0.Mx
Also make a quick research and i did not find related issues or someone facing with this as well.
any clues, ideas would be appreciated
thks in advance!