This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 257694 - Unnecessary dependency in NB Platform Branding module
Summary: Unnecessary dependency in NB Platform Branding module
Status: NEW
Alias: None
Product: apisupport
Classification: Unclassified
Component: Maven (show other bugs)
Version: 8.2
Hardware: PC Other
: P3 normal (vote)
Assignee: Tomas Stupka
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-01-26 07:15 UTC by phansson
Modified: 2016-01-26 07:15 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description phansson 2016-01-26 07:15:14 UTC
In the IDE: When a new Maven-based NetBeans Platform Application is created using the Wizard there's module called "Branding".

In this module the following dependency is automatically added:

  <dependency>
      <groupId>org.netbeans.api</groupId>
      <artifactId>org-netbeans-api-annotations-common</artifactId>
      <version>${netbeans.version}</version>
  </dependency>

This dependency is unnecessary as the Branding module is not meant to contain Java source code.

This is a very minor issue.