rzymek opened a new pull request #34: URL: https://github.com/apache/commons-exec/pull/34
Add a `Automatic-Module-Name: org.apache.commons.exec` manifest entry - similarly as in `commons-lang3` (https://github.com/apache/commons-lang/blob/master/pom.xml#L739) This eases creation of modules that depend in commons-exec. Right now the following `module-info.java`: ``` module test.module { requires commons.exec; } ``` results in: ``` module-info.java:2: error: module not found: commons.exec requires commons.exec; ^ ``` as named Java Modules cannot require unnamed modules. -- 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. For queries about this service, please contact Infrastructure at: [email protected]
