Issue with the new mutiny module-info.java (1.3.1) #833
Replies: 4 comments 3 replies
-
We indeed decided to open all packages. What compilation error are you getting? |
Beta Was this translation helpful? Give feedback.
-
Hi @jponge , thank you. The errors are:
same error for
I'm thinking about add Thank you! |
Beta Was this translation helpful? Give feedback.
-
I see. JPMS is great but could be a bit tricky hehe 😆. Thank you @jponge |
Beta Was this translation helpful? Give feedback.
-
This has been fixed and will be part of Mutiny 1.4.0: #836 Meanwhile you can grab snapshots using version |
Beta Was this translation helpful? Give feedback.
-
Hi all 👋 ,
I'm working in a library that depends from mutiny. I'm using 1.2.0 version, and my module-info is:
And all it's working as expected. So, I'm trying to update to 1.3.1 version from mutiny, and now my compilation is failing because, since 1.3.0 version, mutiny does not export packages anymore; instead, it declares the module with the
open
directive.As far as I know about Java modules (not so much, I need to say :) ), a
open
module indicate that public types of the module are accessible, but just in runtime, not for compile time.So, how can I fix this in order to upgrade the version? 🤔
Thank you so much, people.
Beta Was this translation helpful? Give feedback.
All reactions