buildship
buildship copied to clipboard
The Eclipse Plug-ins for Gradle project.
In my case, the entire `.cache` folder is only used for that single file, and it's annoying to have it there knowing it's only used for that. I'd expect Buildship...
For different Gradle versions, different range of Java versions are supported. Lots of users may encounter this issue when working on a new repository. It would be very helpful if...
The Build Scans ToS should be accessible from the UI. The user should have easy access to the ToS when enabling build scans.
Would be great if you can add a Github action to validate new commits. You find a maven example here https://www.vogella.com/tutorials/GitHub/article.html#github-actions
org.eclipse.buildship.ui/src/main/java/org/eclipse/buildship/ui/internal/util/widget/AdvancedOptionsGroup.java Line 73 ```java this.builderFactory.newLabel(this).alignLeft().text(CoreMessages.Preference_Label_Gradle_User_Home); this.gradleUserHomeText = this.builderFactory.newText(this).alignFillHorizontal().control(); this.gradleUserHomeBrowseButton = this.builderFactory.newButton(this).alignLeft().text(UiMessages.Button_Label_Browse).control(); this.gradleUserHomeWarningLabel = this.builderFactory.newLabel(this).alignLeft().control(); this.gradleUserHomeWarningLabel.setImage(PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJS_WARN_TSK)); HoverText.createAndAttach(this.gradleUserHomeWarningLabel, NLS.bind(CoreMessages.WarningMessage_Using_0_NonPortable, "Gradle user home")); this.builderFactory.newLabel(this).alignLeft().text(CoreMessages.Preference_Label_Java_Home); this.javaHomeText = this.builderFactory.newText(this).alignFillHorizontal().control(); this.javaHomeBrowseButton = this.builderFactory.newButton(this).alignLeft().text(UiMessages.Button_Label_Browse).control(); this.javaHomeWarningLabel = this.builderFactory.newLabel(this).alignLeft().control();...
It seams that Buildship does not support this functionality: https://docs.gradle.org/current/userguide/composite_builds.html#separate_composite I've prepared a test project that can be used to reproduce this problem: https://github.com/maciejmiklas/eclipse_buildship We have a simple Wicket web...
We need to revert https://github.com/eclipse/buildship/commit/f0d607e17bc3ca2773ded14c7ce5717b53e2d112.
Runtime dependencies are shown in gray in "Project and External Dependencies" in package explorer, that's how I can see they are in the runtime classpath of eclipse and not in...
In #1148 a deadlock was identified and I looked into the org.eclipse.buildship.core.internal.CorePlugin which registers tons of OSGi services in its start method. You should move these to OSGi DS services....
I have a multiproject build. Assume this structure: - master - util - web Project `web` applies `war` and `eclipse-wtp` plugins and is a WTP Dynamic Web Project. Project `util`...