Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Issue was totally unrelated. I was using maven copy resource to copy the resources under my src/main/resources/ </p> <p>this was my maven resource: </p> <pre><code> &lt;resource&gt; &lt;directory&gt;src/main/resources&lt;/directory&gt; &lt;filtering&gt;true&lt;/filtering&gt; &lt;includes&gt; &lt;include&gt;**/*.properties&lt;/include&gt; &lt;include&gt;**/*.xml&lt;/include&gt; &lt;include&gt;**/*.txt&lt;/include&gt; &lt;include&gt;**/*.html&lt;/include&gt; &lt;include&gt;**/*.pdf&lt;/include&gt; &lt;/includes&gt; &lt;/resource&gt; </code></pre> <p>Since the filtering was on PDF file was copied as an empty doco to the target folder.</p> <p>I just seperated it into two resources with filtering off for PDF file.</p> <pre><code> &lt;resource&gt; &lt;directory&gt;src/main/resources&lt;/directory&gt; &lt;filtering&gt;true&lt;/filtering&gt; &lt;includes&gt; &lt;include&gt;**/*.properties&lt;/include&gt; &lt;include&gt;**/*.xml&lt;/include&gt; &lt;include&gt;**/*.txt&lt;/include&gt; &lt;include&gt;**/*.html&lt;/include&gt; &lt;/includes&gt; &lt;/resource&gt; &lt;resource&gt; &lt;directory&gt;src/main/resources&lt;/directory&gt; &lt;filtering&gt;false&lt;/filtering&gt; &lt;includes&gt; &lt;include&gt;**/*.pdf&lt;/include&gt; &lt;/includes&gt; &lt;/resource&gt; </code></pre> <p>Thanks to Drew Buckley, I got the issue when trying to do a binary comparison of the file. Actual file on the project was different and the one on the target folder which gets copied from the maven was different.</p> <p>It works fine now. </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload