gradle-karaf-plugin icon indicating copy to clipboard operation
gradle-karaf-plugin copied to clipboard

Results 14 gradle-karaf-plugin issues
Sort by recently updated
recently updated
newest added

https://docs.gradle.org/8.0.1/userguide/upgrading_version_7.html#org_gradle_util_reports_deprecations Here's the usage: https://github.com/lburgazzoli/gradle-karaf-plugin/blob/501c43b2a5dd358ca73b9674af51924f973a193b/src/main/groovy/com/github/lburgazzoli/gradle/plugin/karaf/features/KarafFeaturesTask.groovy#L33 Stacktrace: ```   |   | at org.gradle.util.VersionNumber.logDeprecation(VersionNumber.java:37) |     |   | at org.gradle.util.VersionNumber.(VersionNumber.java:69) |     |   | at org.gradle.util.VersionNumber.(VersionNumber.java:53) |     |   | at java.lang.reflect.Constructor.newInstance(Constructor.java:490) |     |   | at ...

See: https://discuss.gradle.org/t/in-general-would-action-not-configuration-closures-be-the-first-choice/7069/2?u=vlsi The current API is very awkward for using with both Kotlin and Java. Here's an example of generating a feature with Kotlin: ```kotlin karaf { features.apply { xsdVersion...

1) Karaf 4 section shows: ``` karafFeatures { ... ``` Shouldn't it be: ``` karaf { features { ``` ? 2) features name should include version in documentation. Instead of:...

Karaf allows for such syntax: `` Unfortunately, when I try: ``` feature { name = 'my-feature' install = 'auto' } ``` I got: `> Could not set unknown property 'install'...

Hey, is there any work already done to create custom karaf distribution with the gradle-karaf-plugin?

[mock.zip](https://github.com/lburgazzoli/gradle-karaf-plugin/files/2536073/mock.zip) Hi, I suspect this is a problem of the plugin. The problem encountered is that gradle generateFeatures will fail in a multi project build scenario if dependency substitution is...

When generating a kar from a gradle composite build, the composite build project jar is copied in place of all of the included includeBuild('projectPath') jar files. To reproduce the problem,...

I have bnd project consisting of 3 sub-projects. one sub project is the karaf "feature" project, the two other projects are my provider bundle and application bundle. the build.gradle of...