rvesse opened a new pull request #191: URL: https://github.com/apache/commons-csv/pull/191
Ensure that the resulting Commons CSV JAR file can be used in JPMS based projects Prior to this change the JAR is missing the `Automatic-Module-Name` entry in its manifest meaning it cannot be used in JPMS based projects (e.g. rvesse/airline#106) yielding errors like the following: ``` Error occurred during initialization of boot layer java.lang.module.FindException: Module org.apache.commons.csv not found, required by com.github.rvesse.airline.examples ``` With this change JPMS based projects can successfully use Commons CSV without errors. -- 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: issues-unsubscr...@commons.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org