On 05.06.19 14:12, Gilles Sadowski wrote:
Hello.
Le ven. 31 mai 2019 à 20:54, Karl Heinz Marbaise <khmarba...@gmx.de> a écrit :
Hi,
I have created an INFRA ticket, cause one module is stuck and for all
builds which blocks the whole build process..
https://issues.apache.org/jira/browse/INFRA-18546
Ticket has been closed but the problem hasn't been fixed.
See
https://builds.apache.org/view/A-D/view/Commons/job/commons-geometry/65/console
The problem is located in the modules of geometry cause there are some
strange things in there.
Running maven-assembly-plugin on the parent which will not really work
to create a distribution artifact.
This has to be done in a separate module...furthermore the real issue
here are the assembly descriptor (src/assembly/bin.xml) which contains:
<fileSets>
<fileSet>
<directory>${project.basedir}/..</directory>
<includes>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
<include>RELEASE-NOTES.txt</include>
</includes>
</fileSet>
<fileSet>
which is simply wrong...the above entry
<directory>${project.basedir}/..</directory>
has to be changed to:
<directory>${project.basedir}</directory>
Furthermore the following entry should hardly be reconsidered:
<directory>${project.basedir}../target/site</directory>
to get a working build.
THIS will not solve the problem for the dist archive...
Also the src/assembly/src.xml should be changed accordingly ..
Apart from that I don't understand why not using the already defined
resources https://maven.apache.org/apache-resource-bundles/
Kind regards
Karl Heinz Marbaise
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org