Either I'm missing something obvious, or both the Maven book and the Maven Assembly Plugin's homepage, while describing how to write custom assembly descriptors, don't say anything about where that file has to go. Is it part of my project? Does it go into some central Maven configuration directory? Do I have to specify its location somewhere?
|
Yes, you have to specify the location. According to the Configuration and Usage page, this is done this way:
Actually, I'd recommend using |
|||||
|
|
In a somewhat roundabout way, I was eventually able to find out. First, this page about sharing assembly descriptors indirectly gives you some hints. My first mistake was to use
So, putting it in the project's root should work...
... or loading it from a Maven artifact ...
... or putting it on the classpath of the plugin (I guess that's where the predefined descriptors are) ...
... or load it from a URL. Nice, but this really should be documented somewhere, I think. I just put the descriptor file next to th epom.xml and it worked. I probably could've tried that before searching the web... |
|||
|
|