You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2018/02/08 16:13:14 UTC

[GitHub] JaroslavTulach commented on a change in pull request #415: [NETBEANS-365] Allow Harness to be more Friendly

JaroslavTulach commented on a change in pull request #415: [NETBEANS-365] Allow Harness to be more Friendly 
URL: https://github.com/apache/incubator-netbeans/pull/415#discussion_r166985362
 
 

 ##########
 File path: nbbuild/antsrc/org/netbeans/nbbuild/ParseProjectXml.java
 ##########
 @@ -991,7 +993,16 @@ private String computeClasspath(String myCNB, ModuleListParser modules, Dep[] de
                 if (!dep.impl && /* #71807 */ dep.run && !recursive && !runtime) {
                     String friends = attr.getValue("OpenIDE-Module-Friends");
                     if (friends != null && !Arrays.asList(friends.split(" *, *")).contains(myCNB)) {
-                        throw new BuildException("The module " + myCNB + " is not a friend of " + depJar, getLocation());
+                        String friendIssue = "The module " + myCNB + " is not a friend of " + depJar;
+                        if (Boolean.parseBoolean(getProject().getProperty(PROP_FRIENDLY_MODULES))) {
+                            log(friendIssue, Project.MSG_WARN);
+                        } else {                           
+                            log("The " + depJar.getName() + " is a non-stable API/SPI. It is only available for its friends.", Project.MSG_ERR);
 
 Review comment:
   Shouldn't the right fix be to turn the non-stable API/SPI into stable one? NetBeans was using friend dependencies too much. Probably my mistake; maybe the switch to Apache is the right time to change the attitude.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists