stempler / bnd-platform

Build OSGi bundles and Eclipse Update Sites from existing JARs, e.g. from Maven repositories (Plugin for Gradle)
Apache License 2.0
79 stars 30 forks source link

Not all bundles are downloaded #72

Closed vogella closed 9 months ago

vogella commented 4 years ago

If I have multiple bundles, not all are downloaded / converted. For example, if I use the following script and run "gradle clean Us" the yasson_1.0.6.jar is not created. I need to run "gradle Us" again to create it.

/*
    build an update site that contains all commonly used dependencies 
    from external repositories to be selectively added to the targetPlatform
*/
plugins {
  id "org.standardout.bnd-platform" version "1.7.0"
}
repositories {
    mavenCentral()
}
platform {
    // configure proper names for the p2 update site
    categoryId = 'test'
    categoryName = 'externalRepositories'
    featureId = 'test'
    featureName = 'All components coming from external repositories to be used in target platform' 
    featureVersion = '1.0'
    featureProvider = 'test'
    defaultQualifier = ''
    useBndHashQualifiers = false
    useFeatureHashQualifiers = false
    defaultQualifierMap.prefix = ''

    bundle('com.itextpdf:itext7-core:7.1.11')

    bundle('org.emfjson:emfjson-jackson:1.3.0')
    bundle('org.slf4j:slf4j-simple:1.6.0')

    bundle('org.apache.pdfbox:pdfbox:2.0.17')

    bbundle('org.apache.tika:tika:1.24.1')   
    bundle('net.sf.ucanaccess:ucanaccess:5.0.0')

}
github-actions[bot] commented 10 months ago

This issue has been automatically marked as stale because it has not had activity in the last 60 days. It will be closed in two weeks if no further activity occurs. Thank you for your contributions.

github-actions[bot] commented 9 months ago

This issue has been automatically closed due to inactivity. If it is still valid, please post a comment.