Maven: Uncategorized problems with NetBeans dependency verification
"Lusito" <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.openide.devel |
|---|---|
| Message-ID | <[email protected]> |
That does not fix it entirely.. It compiles, but during startup a popup shows:
> The module named org.objectweb.asm.all was needed and not found
so I tried adding this, which I found via google:
Code:
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
<version>5.0.1</version>
</dependency>
But then an exception is thrown during startup:
> java.lang.IllegalArgumentException: Dependency module org.objectweb.asm.all > 5.0.1 duplicates the similar dependency module org.objectweb.asm.all > 5.0.1
So I tried removing the netbeans specific one, but came up with the first popup again:
> The module named org.objectweb.asm.all was needed and not found
So it seems netbeans is confused and thinks it's missing asm, but really isn't missing it.