Author: simonetripodi Date: Wed Mar 27 14:59:57 2013 New Revision: 1461629 URL: http://svn.apache.org/r1461629 Log: ${project.build.directory} could be overridden in the POM and forget to be updated in the assembly descriptor
Modified: commons/proper/ognl/trunk/src/main/assembly/bin.xml Modified: commons/proper/ognl/trunk/src/main/assembly/bin.xml URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/assembly/bin.xml?rev=1461629&r1=1461628&r2=1461629&view=diff ============================================================================== --- commons/proper/ognl/trunk/src/main/assembly/bin.xml (original) +++ commons/proper/ognl/trunk/src/main/assembly/bin.xml Wed Mar 27 14:59:57 2013 @@ -34,14 +34,14 @@ </includes> </fileSet> <fileSet> - <directory>target</directory> + <directory>${project.build.directory}</directory> <outputDirectory></outputDirectory> <includes> <include>*.jar</include> </includes> </fileSet> <fileSet> - <directory>target/site/apidocs</directory> + <directory>${project.build.directory}/site/apidocs</directory> <outputDirectory>apidocs</outputDirectory> </fileSet> </fileSets>