vy commented on PR #80:
URL:
https://github.com/apache/logging-log4j-kotlin/pull/80#issuecomment-2254465301
Log4j Kotlin, just like all Maven-based Apache Logging Services projects
(e.g., Log4j), uses [logging-parent](/apache/logging-parent), which takes care
of the JPMS descriptor generation. Source doesn't contain `module-info.java`
files, they are generated at compile time using [BND](bndtools/bnd):
```
$ unzip -l log4j-api-kotlin-1.4.0.jar | grep module-info
334 2023-12-18 18:39 module-info.class
$ jar -d <log4j-api-kotlin-1.4.0.jar
[email protected]
exports org.apache.logging.log4j.kotlin
requires java.base
requires kotlin.reflect static
requires kotlin.stdlib transitive
requires kotlinx.coroutines.core static
requires org.apache.logging.log4j transitive
```
Do you experience a particular problem?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]