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 2020/10/13 11:23:37 UTC

[GitHub] [netbeans] JaroslavTulach opened a new pull request #2453: Bugfixes for VSCode

JaroslavTulach opened a new pull request #2453:
URL: https://github.com/apache/netbeans/pull/2453


   Invoking the "Java: Compile Workspace" on a Maven project prints empty lines. Removing `"\n"` lines altogether. The EOL character is implicitly present in the previous line.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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



---------------------------------------------------------------------
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


[GitHub] [netbeans] lkishalmi commented on pull request #2453: Bugfixes for VSCode and Gradle

Posted by GitBox <gi...@apache.org>.
lkishalmi commented on pull request #2453:
URL: https://github.com/apache/netbeans/pull/2453#issuecomment-708925576


   Well, I thought that the truth in the augmented command line would freak out an average user. Though it provides NetBeans binding for runSingle and deploy for web projects. 
   
   I'm almost ready with the PR that accepts runSingle task if that's registered.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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



---------------------------------------------------------------------
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


[GitHub] [netbeans] JaroslavTulach edited a comment on pull request #2453: Bugfixes for VSCode and Gradle

Posted by GitBox <gi...@apache.org>.
JaroslavTulach edited a comment on pull request #2453:
URL: https://github.com/apache/netbeans/pull/2453#issuecomment-708907643


   I see. Gradle tooling does augmentation! I was wondering why I cannot find `runSingle` when launching `gradlew` on the command line. The augmentation approach defeats the idea of NetBeans always doing internally the same thing as from command line and it beats the purpose of printing the command line at the beginning of output. It makes no sense to copy it to terminal.
   
   > we have a runSingle task defined in the project
   
   If we have this, then I have to modify the [testing project](https://micronaut.io/launch/) to have `runSingle` action.
   
   Or I need to find a way to open a project and make it augmented.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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



---------------------------------------------------------------------
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


[GitHub] [netbeans] lkishalmi merged pull request #2453: Bugfixes for VSCode and Gradle

Posted by GitBox <gi...@apache.org>.
lkishalmi merged pull request #2453:
URL: https://github.com/apache/netbeans/pull/2453


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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



---------------------------------------------------------------------
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


[GitHub] [netbeans] JaroslavTulach edited a comment on pull request #2453: Bugfixes for VSCode and Gradle

Posted by GitBox <gi...@apache.org>.
JaroslavTulach edited a comment on pull request #2453:
URL: https://github.com/apache/netbeans/pull/2453#issuecomment-708437357


   Laszlo, I have a question about `JavaActionProvider`. Why does it not run/debug single file?
   ```
      case COMMAND_DEBUG_SINGLE:
      case COMMAND_RUN_SINGLE:
          if (RunUtils.isAugmentedBuildEnabled(project)) {
   ```
   unless the project is augmented? Btw. what does it mean "augmented"?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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



---------------------------------------------------------------------
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


[GitHub] [netbeans] JaroslavTulach commented on pull request #2453: Bugfixes for VSCode and Gradle

Posted by GitBox <gi...@apache.org>.
JaroslavTulach commented on pull request #2453:
URL: https://github.com/apache/netbeans/pull/2453#issuecomment-708437357


   Laszlo, I have a question about `JavaActionProvider`. Why does it not run/debug single file?
   ```
      case COMMAND_DEBUG_SINGLE:
                               case COMMAND_RUN_SINGLE:
                                   if (RunUtils.isAugmentedBuildEnabled(project)) {
   ```
   unless the project is augmented? Btw. what does it mean "augmented"?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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



---------------------------------------------------------------------
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


[GitHub] [netbeans] JaroslavTulach edited a comment on pull request #2453: Bugfixes for VSCode and Gradle

Posted by GitBox <gi...@apache.org>.
JaroslavTulach edited a comment on pull request #2453:
URL: https://github.com/apache/netbeans/pull/2453#issuecomment-708437357


   Laszlo, I have a question about `JavaActionProvider`. Why does it not run/debug single file?
   ```
      case COMMAND_DEBUG_SINGLE:
      case COMMAND_RUN_SINGLE:
          if (RunUtils.isAugmentedBuildEnabled(project)) {
   ```
   unless the project is augmented? Btw. what does it mean "augmented"? I have found that the `false` value is set in `GradleBaseProject.getFallback`.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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



---------------------------------------------------------------------
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


[GitHub] [netbeans] JaroslavTulach commented on pull request #2453: Bugfixes for VSCode and Gradle

Posted by GitBox <gi...@apache.org>.
JaroslavTulach commented on pull request #2453:
URL: https://github.com/apache/netbeans/pull/2453#issuecomment-708907643


   I see. Gradle tooling does augmentation! I was wandering why I cannot find `runSingle` when launching gradle on the command line. The augmentation approach defeats the idea of NetBeans always doing internally the same thing as from command line and it beats the purpose of printing the command line at the beginning of output. It makes no sense to copy it to terminal.
   
   > we have a runSingle task defined in the project
   
   If we have this, then I have to modify the [testing project](https://micronaut.io/launch/) to have `runSingle` action.
   
   Or I need to find a way to open a project and make it augmented.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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



---------------------------------------------------------------------
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


[GitHub] [netbeans] lkishalmi commented on pull request #2453: Bugfixes for VSCode and Gradle

Posted by GitBox <gi...@apache.org>.
lkishalmi commented on pull request #2453:
URL: https://github.com/apache/netbeans/pull/2453#issuecomment-708527493


   Well run and debug single requires a runSingle taskwhich would take runClassName and runArgs. That task is injected by the NetBeans Gradle Tooling if build augmentation is enabled.
   Well the situation can be improved to enable those actions if we have a runSingle task defined in the project. I'm going to create a PR for that one.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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



---------------------------------------------------------------------
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