Closed brunobasto closed 9 years ago
I tried removing org.eclipse.osgi dependency - it worked. I'll see to removing this dependency in the next version of Wuff.
Awesome! Thanks for the quick response. In the mean time, is there something I can put in my build.gradle
to solve the issue temporarily?
Thx again
You can use snapshot version, it contains the fix:
buildscript {
repositories {
jcenter()
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
dependencies {
classpath 'org.akhikhl.wuff:wuff-plugin:0.0.14-SNAPSHOT'
}
}
repositories {
jcenter()
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local' }
}
apply plugin: 'java'
apply plugin: 'org.akhikhl.wuff.eclipse-rcp-app'
New release comes today or tomorrow, depending on bug-fixing/tests.
Awesome! Thank you very much.
Hello, I'm using the
apply plugin: 'org.akhikhl.wuff.osgi-bundle'
plugin to deploy a bundle to Apache Karaf and I'm almost sure I don't need the dependency on org.eclipse.osgi. But whenever I build a bundle, that header is added. Is there a way to remove that header from my manifest?Thx