0

I'm converting a netbeans platform build to maven, and I'm failing to identity the Maven artifact for org.netbeans.core.NbErrorManager. Which one is it?

bmargulies
  • 97,814
  • 39
  • 186
  • 310

1 Answers1

2
<dependency>
    <groupId>org.netbeans.modules</groupId>
    <artifactId>org-netbeans-core</artifactId>
    <version>RELEASE71</version>
</dependency>
Tim Sparg
  • 3,294
  • 2
  • 27
  • 40