On Sat, Jun 13, 2009 at 7:40 AM, Barrie Treloar<baerr...@gmail.com> wrote:
> On Sat, Jun 13, 2009 at 7:21 AM, Barrie Treloar<baerr...@gmail.com> wrote:
>> On Sat, Jun 13, 2009 at 12:04 AM, John Casey<jdca...@commonjava.org> 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: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org

Reply via email to