-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gradle projects compile to bin/
instead of build/
#2338
Comments
Was looking for a solution for my problem when I stumbled upon this mentioned comment. The problem here is the Java extension for VS Code compiles binaries to Is there a way for VS Code to follow Gradle's settings for the build folder? |
@brunovieira97 You may want to take a look at eclipse-buildship/buildship#1131 |
Wasn't aware of this Buildship project. However, Maven support does not seem to be affected at all. AFAIK, it just compiles binaries directly to |
See |
I don't think java extension even uses gradle to build these classes. I have registered a task with classes.finalizedBy mergeMethods And none of the changes got applied by this task. |
Gradle projects default their builds to
build/
, however the vscode plugin compiles a completely separate version of all the class files tobin/
, so it does require adding a completely separate directory to source control, along with actually performing all the compiles twice (once for gradle, and once for vscode).Originally posted by @ThadHouse in #466 (comment)
The text was updated successfully, but these errors were encountered: