Add os dependent file separator
authorCherian Mathew <c.mathew@bgbm.org>
Tue, 20 Oct 2015 13:36:57 +0000 (15:36 +0200)
committerCherian Mathew <c.mathew@bgbm.org>
Tue, 20 Oct 2015 13:36:57 +0000 (15:36 +0200)
cdmlib-remote-webapp/pom.xml

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