reverting failed attempt to fix maven resources filtering for windows
authorAndreas Kohlbecker <a.kohlbecker@bgbm.org>
Thu, 17 Dec 2015 14:07:46 +0000 (15:07 +0100)
committerAndreas Kohlbecker <a.kohlbecker@bgbm.org>
Thu, 17 Dec 2015 14:07:46 +0000 (15:07 +0100)
cdmlib-remote-webapp/pom.xml

index 36521e4bf950f91f0e4e5b9781faf1f68faea020..7bdf5392151207dd9bea064fd5bad121c5a2f11a 100644 (file)
         <!-- replace the place holders like ${...} in datasources.xml -->
         <targetPath>${project.build.directory}/test-classes</targetPath>
         <filtering>true</filtering>
-        <directory>..${file.separator}src${file.separator}test${file.separator}resources</directory>
+        <directory>${basedir}/src/test/resources</directory>
         <includes>
           <include>datasources.xml</include>
         </includes>
       <resource>
         <!-- all other test resources without filtering -->
         <targetPath>test-classes</targetPath>
-        <directory>..${file.separator}src${file.separator}test${file.separator}resources</directory>
+        <directory>${basedir}/src/test/resources</directory>
         <excludes>
           <exclude>datasources.xml</exclude>
         </excludes>
       <resource>
         <!-- all main resources without filtering -->
         <targetPath>classes</targetPath>
-        <directory>..${file.separator}src${file.separator}main${file.separator}resources</directory>
+        <directory>${basedir}/src/test/resources</directory>
       </resource>
     </resources>
     <plugins>