arturmkrtchyan / iban4j

A Java library for generation and validation of the International Bank Account Numbers (IBAN ISO_13616) and Business Identifier Codes (BIC ISO_9362).
http://iban4j.org
Apache License 2.0
271 stars 124 forks source link

Change Request: Support Automatic-Module-Name in iban4j distribution #148

Open marcelbaumann opened 3 weeks ago

marcelbaumann commented 3 weeks ago

Dear Maintainer

Could you please add an automatic module name to the distribution to allow use of iban4j in a java module application (supported since Java 9). The changes would be in the pom file (maven-jar-plugin support it and should be automatically called in your pom file if added).

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <configuration>
        <archive>
            <manifestEntries>
                <Automatic-Module-Name>org.iban4j</Automatic-Module-Name>
            </manifestEntries>
        </archive>
    </configuration>
</plugin>

Thanks in advance. See also issue #53

hajk1 commented 3 weeks ago

It was an old feature request. I plan to include it in the next release. Thanks for your suggestion! @marcelbaumann