-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add jpms support with module-info.java
#175
base: master
Are you sure you want to change the base?
Conversation
- feat: add `module-info.java` - feat: add `Java9Modularity` used by other kotlinx projects - feat: build `core` project as multi-release jar - chore: upgrade gradle → `8.6` (to run under jvm21) - chore: general build cleanup (use kotlin for most build scripts) - chore: add gradle lockfiles and locking config - chore: add gradle dependency verification config
implementation "org.jetbrains.kotlin:kotlin-stdlib" | ||
implementation 'org.openjdk.jmh:jmh-core:1.21' | ||
implementation libs.kotlin.stdlib | ||
implementation libs.jmh.core |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
General build cleanup: moved dependencies to a version catalog.
lockAllConfigurations() | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependency locking and verification were activated, but kept in lenient mode for now, to account for native dependency shift in CI.
object Java9Modularity { | ||
@JvmStatic | ||
@JvmOverloads | ||
fun Project.configureJava9ModuleInfo(multiRelease: Boolean = true) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Java9Modularity
added from here
archivesBaseName = "kotlinx-collections-immutable" // doesn't work | ||
archivesName = "kotlinx-collections-immutable" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes deprecation
@@ -1,3 +1,7 @@ | |||
@file:OptIn(org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl::class) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes warnings
module kotlinx.collections.immutable { | ||
requires java.base; | ||
requires transitive kotlin.stdlib; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New module-info.java
descriptor. I thought about adding it as kotlinx.collections.immutable.jvm
, which is the suggested module name in IntelliJ; but I don't think users are using this value yet, because I can't locate it anywhere as an Automatic-Module-Name
.
Thus, the format here matches other modules, like:
kotlinx.coroutines.[core|guava|...]
kotlinx.serialization.[core|json|...]
[versions] | ||
kotlin-sdk = "1.9.22" | ||
kotlinx-benchmark = "0.4.10" | ||
kotlinx-validator = "0.13.2" | ||
guava-testlib = "18.0" | ||
jmh = "1.21" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New version catalog; other than updating kotlin-sdk
to 1.9.22
, no version changes were applied.
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gradle upgrade → latest stable so that this project can run under JVM 21.
pluginManagement { | ||
repositories { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rewrote this file as Kotlin because it helps a bit with build speed, since Groovy build scripts can't be build cached until Gradle 8.7, which is at RC2 (not yet released).
repositories { | ||
mavenCentral() | ||
mavenLocal() | ||
if (project.hasProperty("kotlin_repo_url")) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the nullable findProperty
method to check and retrieve property. The properties
property performs a copy of the underlying map.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, although this block wasn't supposed to make it in at all; I'll drop
Good PR, but there is a lot of housekeeping and the original intention gets lost in all the minutiae. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While this project contains only one module where module-info should be added, it would be better to avoid introducing an included build with common logic like buildSrc
- it complicates build and increases configuration time.
It's enough to add a compilation task directly in the core
subproject, like it is done in kotlinx.datetime
We can refactor it later to shared build logic if we introduce another published module.
@daniel-jasinski Thank you for that review @ilya-g Okay, no problem. I will apply those changes. Thank you as well |
Summary
This PR adds a
module-info.java
definition, bringingkotlinx-collections-immutable
to full JPMS support; downstream users can use the new module with the following directive:module-info.java
Fixes and closes #157
Other changes
In general, the build was cleaned up, and Dependency Locking and Dependency Verification are now turned on, as is the case for other Kotlin projects.
Trying it out
This is still a draft because it is being tested downstream. If you would like to test this module, you can do so with:
build.gradle.kts
dependencies { implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.8-rc-1") }
settings.gradle.kts
Changelog
module-info.java
Java9Modularity
used by other kotlinx projectscore
project as multi-release jar8.6
(to run under jvm21)1.9.22