On Sat, Jun 13, 2009 at 7:40 AM, Barrie Treloar<[email protected]> wrote:
> On Sat, Jun 13, 2009 at 7:21 AM, Barrie Treloar<[email protected]> wrote:
>> On Sat, Jun 13, 2009 at 12:04 AM, John Casey<[email protected]> wrote:
>>> Is this still happening with maven-assembly-plugin 2.2-beta-4?
>>
>> It was 2.2-beta-2, I'll check -4
>
> 2.2-beta-4 behaves correctly.
>

http://svn.apache.org/repos/asf/maven/plugins/branches/maven-assembly-plugin-2.2-beta-4/src/main/assembly/source-release.xml

uses ${project.build.directory} except in the excludes block:
      <excludes>
        <exclude>*.log</exclude>
        <exclude>target/**</exclude>
      </excludes>

I tried
      <excludes>
        <exclude>*.log</exclude>
        <exclude>${project.build.directory}/**</exclude>

and it correctly gets replaced with target.

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

Reply via email to