To enable Kotlin OSGi support you need to include kotlin-osgi-bundle
instead of regular Kotlin libraries. It is recommended to remove kotlin-runtime
, kotlin-stdlib
and kotlin-reflect
dependencies as kotlin-osgi-bundle
already contains all of them. You also should pay attention in case when external Kotlin libraries are included. Most regular Kotlin dependencies are not OSGi-ready, so you shouldn't use them and should remove them from your project.
To include the Kotlin OSGi bundle to a Maven project:
<dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-osgi-bundle</artifactId> <version>${kotlin.version}</version> </dependency> </dependencies>
To exclude the standard library from external libraries (notice that "star exclusion" works in Maven 3 only):
<dependency> <groupId>some.group.id</groupId> <artifactId>some.library</artifactId> <version>some.library.version</version> <exclusions> <exclusion> <groupId>org.jetbrains.kotlin</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency>
To include kotlin-osgi-bundle
to a gradle project:
compile "org.jetbrains.kotlin:kotlin-osgi-bundle:$kotlinVersion"
To exclude default Kotlin libraries that comes as transitive dependencies you can use the following approach:
dependencies { compile ( [group: 'some.group.id', name: 'some.library', version: 'someversion'], .....) { exclude group: 'org.jetbrains.kotlin' }
Even though it is the most preferred way to provide OSGi support, unfortunately it couldn't be done for now due to so called "package split" issue that couldn't be easily eliminated and such a big change is not planned for now. There is Require-Bundle
feature but it is not the best option too and not recommended to use. So it was decided to make a separate artifact for OSGi.
© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/docs/reference/kotlin-osgi.html