The POM for unknown.binary:AbsoluteLayout:jar:SNAPSHOT is missing, no
dependency information available
I have this problem with my Java Project, any idea?
The POM for unknown.binary:AbsoluteLayout:jar:SNAPSHOT is missing, no
dependency information available
I have this problem with my Java Project, any idea?
This appears to be the same question as in Maven - AbsoluteLayout dependency.
Adding this to your POM should help:
<repositories>
<repository>
<id>netbeans</id>
<name>Netbeans rep</name>
<url>http://bits.netbeans.org/maven2/</url>
</repository>
</repositories>
(Also, try googling yourself next time.)