Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <blockquote> <p>I have tried looking for documentation as to why this happens - but cannot find anything that answers this behaviour. Any helpful pointers to documentation or an explanation would be much appreciated. </p> </blockquote> <p>This is not documented in the <a href="http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/filtering-some-distribution-files.html" rel="nofollow noreferrer">filtering section</a> of the Maven Assembly Plugin but it looks like it uses the same default delimiters as the <a href="http://maven.apache.org/plugins/maven-resources-plugin/resources-mojo.html#delimiters" rel="nofollow noreferrer">Maven Resources Plugin</a> which are:</p> <pre><code>&lt;build&gt; ... &lt;plugin&gt; ... &lt;configuration&gt; ... &lt;delimiters&gt; &lt;delimiter&gt;${*}&lt;/delimiter&gt; &lt;delimiter&gt;@&lt;/delimiter&gt; &lt;/delimiters&gt; </code></pre> <p>So the following would be filtered as well:</p> <pre><code>env.name=@replacement.value@ </code></pre> <p>And this also explains why a single <code>@</code> in the email address is causing troubles (the plugin never finds the end delimiter).</p> <p>It is possible to configure the delimiters and an escape string, just as it is when using the <a href="http://maven.apache.org/plugins/maven-resources-plugin/resources-mojo.html#delimiters" rel="nofollow noreferrer">Maven Resources Plugin</a>. The <a href="http://maven.apache.org/plugins/maven-assembly-plugin/single-mojo.html" rel="nofollow noreferrer">Maven Assembly Plugin documentation for the single goal</a> provides the details.</p> <p>A cheap workaround, for this particular email address situation, would be to avoid using a single <code>@</code> in the file to filter:</p> <pre><code>############################## # author.name aT company.com # ############################## env.name=${replacement.value} </code></pre> <p>And as a benefit, you'll avoid spam :)</p>
    singulars
    1. This table or related slice is empty.
    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.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. 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