-1
The POM for unknown.binary:AbsoluteLayout:jar:SNAPSHOT is missing, no 
dependency information available

I have this problem with my Java Project, any idea?

QuickSilver
  • 3,915
  • 2
  • 13
  • 29
Juan
  • 1
  • 1
  • Can you provide more data? like the pom and what you are trying to do? – fjsv Jun 10 '20 at 23:05
  • I'm trying to do a Thread with sound and one interface. – Juan Jun 10 '20 at 23:23
  • Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.5.0:exec (default-cli) on project HilosConJfugue: Command execution failed. Process exited with an error: 1 (Exit value: 1) -> [Help 1] To see the full stack trace of the errors, re-run Maven with the -e switch. Re-run Maven using the -X switch to enable full debug logging. – Juan Jun 10 '20 at 23:23
  • Can you share your pom and the. Ommand you are running? – fjsv Jun 10 '20 at 23:31

1 Answers1

1

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.)