goomph
goomph copied to clipboard
IDE as build artifact
... `Ensure that the org.eclipse.core.runtime bundle is resolved and started (see config.ini).` How do I set the start level of the bundle?
``` id 'com.diffplug.osgi.equinoxlaunch' version '3.37.0' ``` This error is being produced at https://github.com/diffplug/goomph/blob/f49fa797b535986812924e4b24d3ec417a281b5c/src/main/java/com/diffplug/gradle/eclipserunner/EquinoxLaunchSource.java#L68 It is being caused by ```source.addProject(project(':foo.'))``` within `equinoxSetup` I commented out the line and added ``` project(':foo').getTasks().each...
For background, I am trying to run an RCP app, not the full Eclipse IDE. As such, I am hoping to reverse-engineer the specific "Eclipse Application" launch configuration command line...
This plugin is still actively maintained, but there are a few abandoned aspects. They still work for some people, but are broken for most. We're happy to take PRs for...
I have the following build.gradle, similar to the examples in the java.docs: ``` apply plugin: 'com.diffplug.oomph.ide' oomphIde { repoEclipseLatest() jdt {} eclipseIni { vmargs('-Xmx2g') } addProject(':proto.common.model') addProject(':proto.common.edit') addProject(':proto.user.model') addProject(':proto.user.edit') addProject(':proto.library.model')...
We would like to generate our manifests with the `bndmanifest` plugin. Our idea is to generate the `MANIFEST.MF` file, but in a way that it stays compatible with the PDE...
Currently, if you have ``clean`` task in the execution, this will clean the default root folder of the p2AsMaven plugin (the build directory). Which of course impacts the dependencies resolution...
Hey folks, I was trying to get the UML2/Modelling components (e.g. org.eclipse.uml2.uml) as a dependency with the eclipseMavenCentral task, but it fails to find any of the bundles and lists...
I'm trying to make Eclipse run the annotation processors defined in my Gradle script. I ended up here, since it seems like the only maintained (although non-official) way to do...
I am trying to give the p2.asmaven Plugin a spin. - Gradle `7.2` - Java `1.8` (in env + gradle.properties) - My build.gradle is: ```gradle plugins { id "com.diffplug.p2.asmaven" version...