ejjcase

Results 21 comments of ejjcase

I believe this occurs when `java-gradle-plugin` is applied. The manual recommends adding dependencies to the `shadow` configuration: ```kotlin shadow(gradleApi()) shadow(localGroovy()) ``` but this had no effect in my project. It...

@chrisrueger asked me to have a look at this. It looks like this is what we have to do in the Gradle tasks: * At configuration time, load the bnd/bndrun...

I'm working on this today. Observing how it currently works: * Property values that are not strings can go in `bundle.properties` in the Gradle config. The configuration cache can still...

> I am wrapping up a fix for this. Will make a PR shortly. I see I should have been more communicative about what I was doing yesterday. Didn't want...

A typical `.classpath` looks like this: ```xml ``` and a typical `.project` looks like this: ```xml com.ejjcase.somebundle org.eclipse.jdt.core.javabuilder bndtools.core.bndbuilder org.eclipse.jdt.core.javanature bndtools.core.bndnature ``` Although I've been using separate `classes` and `testClasses`...

> Sounds good. I hope that the issues disappear when you clearly separate the folders which are touched by Eclipse and Gradle. Let me know how it goes. It hasn't...

I now have in my Bnd bundle defaults: ```properties -includeresource.bundleresources: {-bundleResources} ``` (`resources` was taken, as it's where some of my projects keep test files that don't get bundled up.)...

The above doesn't make the bug go away in Gradle builds, because `processResources` still runs but now creates empty directories. I apparently do need to explicitly disable it (but can...

@chrisrueger Thank you, but I'm not convinced Copilot has the right idea yet. The changes I have made seem to have worked around the bug in Gradle. But when I...

Screenshot to prove I'm not going barmy. This particular bundle doesn't even have any resources. The classes are apparently being overwritten with … nothing.