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.

View | Details | Raw Unified | Return to bug 208411
Collapse All | Expand All

(-)a/maven/src/org/netbeans/modules/maven/api/Constants.java (-1 / +1 lines)
Lines 90-96 Link Here
90
     * allows to customize project's display name. The global equivalent is $userhome/Preferences/org/netbeans/modules/maven.properties' property of project.displayName
90
     * allows to customize project's display name. The global equivalent is $userhome/Preferences/org/netbeans/modules/maven.properties' property of project.displayName
91
     */
91
     */
92
    public static final String HINT_DISPLAY_NAME = "netbeans.hint.displayName";
92
    public static final String HINT_DISPLAY_NAME = "netbeans.hint.displayName";
93
    
93
94
    /**
94
    /**
95
     * apache maven default groupid for maven plugins. 
95
     * apache maven default groupid for maven plugins. 
96
     */ 
96
     */ 
(-)a/maven/src/org/netbeans/modules/maven/queries/ShadePluginDetector.java (-2 / +2 lines)
Lines 81-88 Link Here
81
        if (PluginPropertyUtils.getPluginVersion(nbmp.getMavenProject(), Constants.GROUP_APACHE_PLUGINS, "maven-shade-plugin") == null) {
81
        if (PluginPropertyUtils.getPluginVersion(nbmp.getMavenProject(), Constants.GROUP_APACHE_PLUGINS, "maven-shade-plugin") == null) {
82
            return true;
82
            return true;
83
        }
83
        }
84
        Boolean toret = Boolean.valueOf(PluginPropertyUtils.getPluginProperty(project, Constants.GROUP_APACHE_PLUGINS, "maven-shade-plugin", "shadedArtifactAttached", "shade", null));
84
        boolean toret = Boolean.parseBoolean(PluginPropertyUtils.getPluginProperty(project, Constants.GROUP_APACHE_PLUGINS, "maven-shade-plugin", "shadedArtifactAttached", "shade", null));
85
        if (toret == Boolean.FALSE) {
85
        if (!toret) {
86
            if (pr != null) {
86
            if (pr != null) {
87
                pr.addReport(PROBLEM_REPORT);
87
                pr.addReport(PROBLEM_REPORT);
88
            }
88
            }

Return to bug 208411