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 227177
Collapse All | Expand All

(-)a/maven.jaxws/src/org/netbeans/modules/maven/jaxws/WSUtils.java (-1 / +3 lines)
Lines 974-981 Link Here
974
                        }
974
                        }
975
                    }
975
                    }
976
                } else {
976
                } else {
977
                    if (ddFolder == null || ddFolder.getFileObject("sun-jaxws.xml") == null) {
977
                    // generate non JSR109 artifacts
978
                    // generate non JSR109 artifacts
978
                    if (WSUtils.needNonJsr109Artifacts(prj)) {
979
                    if (generateNonJsr109Artifacts(prj)) {
979
                        if (ddFolder != null) {
980
                        if (ddFolder != null) {
980
                            try {
981
                            try {
981
                                addJaxWsEntries(ddFolder, jaxWsSupport);
982
                                addJaxWsEntries(ddFolder, jaxWsSupport);
Lines 1007-1012 Link Here
1007
            }
1008
            }
1008
        }
1009
        }
1009
    }
1010
    }
1011
    }
1010
1012
1011
    public static String getUniqueId(String id, List<JaxWsService> services) {
1013
    public static String getUniqueId(String id, List<JaxWsService> services) {
1012
        String result = id;
1014
        String result = id;

Return to bug 227177