goomph icon indicating copy to clipboard operation
goomph copied to clipboard

IDE as build artifact

Results 35 goomph issues
Sort by recently updated
recently updated
newest added

I am new to eclipse and Gradle. I have a specific requirement to build an eclipse update site, that has an eclipse feature and feature contains an eclipse plugin. I...

question

I did the setup of `com.diffplug.eclipse.mavencentral` with `constrainTransitivesToThisRelease()` inside the `eclipseMavenCentral {}` section. See https://github.com/diffplug/goomph/issues/149 for more details. In a multi-module setup I have noticed that consumer of a library...

question

`FileMisc.download(..)` throws an `IllegalArgumentException` when a download fails (e.g. 404), but `PdeInstallation` and `P2BootstrapInstallation` expect it to throw `FileNotFoundExcpetion` in order to try alternative uris. Workaround in my case is...

bug

I've created a gradle project. This is `build-gradle`: plugins { id 'java' id "com.diffplug.eclipse.apt" version "3.22.0" } repositories { jcenter() } dependencies { implementation 'com.amazonaws:aws-lambda-java-core:1.2.0' implementation 'com.amazonaws:aws-lambda-java-events:2.2.7' implementation 'com.amazonaws:aws-java-sdk-s3:1.11.754' implementation...

question

At work we have been using an internal artifact repository to supply the Goomph P2 bootstrap package. We had our project set up like so: `goomph_override_p2bootstrapUrl = 'https://intranet/goomph-p2-bootstrap/4.7.2/goomph-p2-bootstrap-4.7.2.zip'` This worked...

enhancement

In https://github.com/diffplug/durian-swt/pull/7/commits/496386ecebd023075b03a041d238af8d02a29469 I used `java-library` in a multi-module project, and I declared an `api` dependency on another module within the project. I then saw intermittent errors like [this](https://travis-ci.org/diffplug/durian-swt/builds/636211276#L237): ``` >...

bug

The `com.diffplug.eclipse.apt` plugin is just copy-pasted with a few minor fixes from the https://github.com/tbroyer/gradle-apt-plugin, which is no longer maintained. It is no longer maintained because Gradle incorporated native support for...

enhancement

In gradle 3.4, there is now [support for separate api and implementation dependencies](https://docs.gradle.org/current/userguide/java_library_plugin.html). ```gradle dependencies { api 'commons-httpclient:commons-httpclient:3.1' implementation 'org.apache.commons:commons-lang3:3.5' } ``` Soon (Q2 2017), it will also [support declaring...

enhancement

Hi you, first of all I'd like to say, that goomph is a really really cool thing. I am preparing development setup for our company and this plugin eases this...

enhancement

Hi, I tried the addProjectFolder() method to import projects. I work with buildship plugin, so I don't have eclipse plugin in my projects applied and I do not have a...

enhancement