Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for bnd (0.01 seconds)

  1. build-logic/src/main/kotlin/BndBuildAction.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import aQute.bnd.gradle.BundleTaskExtension
    import aQute.bnd.osgi.Builder
    import aQute.bnd.osgi.Constants
    import aQute.bnd.osgi.Jar
    import aQute.bnd.osgi.Processor
    import aQute.bnd.version.MavenVersion
    import aQute.lib.io.IO
    import aQute.lib.utf8properties.UTF8Properties
    import java.io.File
    import java.util.Properties
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  2. build-logic/src/main/kotlin/Osgi.kt

        setClasspath(osgi.compileClasspath + sourceSets["main"].compileClasspath)
        properties.empty()
        bnd(*bndProperties)
      }
      jarTask.doLast(
        "buildBundle",
        BndBuildAction(bundleExtension, jarTask, sourceSets["main"].allSource),
      )
    }
    
    fun Project.applyOsgiMultiplatform(vararg bndProperties: String) {
      // BND is incompatible with Kotlin/Multiplatform because it assumes the JVM source set's
      // name is
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  3. .github/renovate.json

        "renovate"
      ],
      "ignoreDeps": [
        "com.squareup.okhttp3:okhttp",
        "com.squareup.okhttp3:okhttp-tls",
        "com.squareup.okhttp3:mockwebserver"
      ],
      "packageRules": [
        {
          "groupName": "bnd",
          "matchPackageNames": [
            "/biz.*/"
          ]
        },
        {
          "groupName": "graalvm",
          "matchPackageNames": [
            "/org.graalvm.*/"
          ]
        },
        {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 15 12:02:18 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  4. build-logic/src/main/kotlin/okhttp.base-conventions.gradle.kts

      doLast {
        for (configuration in resolvableConfigurations) {
          configuration.files
        }
      }
    }
    
    normalization {
      runtimeClasspath {
        metaInf {
          ignoreAttribute("Bnd-LastModified")
        }
      }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Feb 04 22:16:39 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  5. gradle/libs.versions.toml

    animalsniffer-annotations = { module = "org.codehaus.mojo:animal-sniffer-annotations", version.ref = "animalsniffer-annotations" }
    aqute-bnd = { module = "biz.aQute.bnd:biz.aQute.bnd", version.ref = "bnd" }
    aqute-resolve = { module = "biz.aQute.bnd:biz.aQute.resolve", version.ref = "bnd" }
    assertk = { module = "com.willowtreeapps.assertk:assertk", version.ref = "assertk" }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 31 22:01:48 GMT 2026
    - 12K bytes
    - Click Count (0)
  6. build-logic/build.gradle.kts

      implementation(libs.gradlePlugin.dokka)
      implementation(libs.gradlePlugin.binaryCompatibilityValidator)
      implementation(libs.gradlePlugin.android)
      implementation(libs.gradlePlugin.bnd)
      implementation(libs.aqute.bnd)
      implementation(libs.gradlePlugin.animalsniffer)
      implementation(libs.gradlePlugin.spotless)
      implementation(libs.gradlePlugin.shadow)
      implementation(libs.gradlePlugin.graalvm)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 18 18:05:02 GMT 2026
    - 1.1K bytes
    - Click Count (0)
Back to Top