How to avoid the -generic suffix when using ants EJBJAR Task?
I'm creating an ejb jar via the ejbjar
task in ant setting naming="directory"
but it generates the jar with the name of the folder plu开发者_Python百科s -generic.
Is it possible to skip this suffix via some property?
There is a genericjarsuffix parameter that defaults to "-generic.jar" and keepgeneric which defaults to "false" which determines whether the generic file used as input to the application server deployment tool(s) is retained.
The documentation describes the options available for the different application servers.
Since keepgeneric defaults to "false", does your Ant script explicitly set this to "true" somewhere?
精彩评论