Hi Hervé,

i think (lets wait for the results of the IT on apache build server but i'm pretty sure) the problem was related to the change in the predefined descriptor:

>>> -      <!-- TODO: use expresssions instead:
${project.build.sourceDirectory}, etc --> -
<directory>${project.basedir}/src</directory>
+      <directory>\${project.build.sourceDirectory}</directory>
        <useDefaultExcludes>true</useDefaultExcludes>
      </fileSet>
    </fileSets>


The problem was related to the given thing via the TODO...which took me into the wrong direction (or didn't think long enought about it).

The ${project.build.sourceDirectory} will be expanced to src/main/java which will miss the part src/test/java etc.

And the integration is exactly testing this behaviour which will fail if i do it that way (obviously).

So the previous state

\${project.basedir}/src

will solve the IT failing. (already committed it).

But there is no other better solution for that, cause i don't know of an expression which expands to 'src' alone...

Kind regards
Karl-Heinz Marbaise

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to