Author: grobmeier Date: Sun Jul 24 13:30:45 2011 New Revision: 1150356 URL: http://svn.apache.org/viewvc?rev=1150356&view=rev Log: relative paths to resources causes the maven eclipse plugin 2.8 to fail - used standard basedir variable instead
Modified: commons/proper/vfs/trunk/core/pom.xml Modified: commons/proper/vfs/trunk/core/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/pom.xml?rev=1150356&r1=1150355&r2=1150356&view=diff ============================================================================== --- commons/proper/vfs/trunk/core/pom.xml (original) +++ commons/proper/vfs/trunk/core/pom.xml Sun Jul 24 13:30:45 2011 @@ -81,10 +81,6 @@ </dependency> </dependencies> - <properties> - <vfs.parent.dir>${basedir}/..</vfs.parent.dir> - </properties> - <build> <resources> <resource> @@ -94,14 +90,14 @@ </excludes> </resource> <resource> - <directory>..</directory> + <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>NOTICE.txt</include> </includes> </resource> <resource> - <directory>..</directory> + <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE.txt</include> @@ -115,14 +111,14 @@ <directory>src/test/resources</directory> </testResource> <testResource> - <directory>..</directory> + <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>NOTICE.txt</include> </includes> </testResource> <testResource> - <directory>..</directory> + <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE.txt</include>