AdamBien/wad

WAR name is not derived properly if the pom contains `finalName` element.

rsvoboda opened this issue · 1 comments

Archive name is resolved by String thinWARName = currentDirectory + ".war";
https://github.com/AdamBien/wad/blob/master/src/main/java/wad/App.java#L78

WAR name is not derived properly if the pom contains finalName element.

    <build>
        <finalName>foo-bar</finalName>
    </build>

Its intentional -> in ThinWARs the artifact id should be the WAR name. In 99% of all my projects it is the case. I like the convention. Thanks for testing!