Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p><a href="http://maven.apache.org/guides/introduction/introduction-to-profiles.html" rel="nofollow">Profile activation</a> might help here. Remove the <code>&lt;environmentVariables&gt;</code> config from the integration tests profile. Then add the profiles below, tweaking the <code>&lt;activation&gt;</code> sections to meet the specific requirements. You do not need to explicitly enable these profiles on the command line; Maven will activate the right profile based on which system is running the build.</p> <pre><code>&lt;profile&gt; &lt;id&gt;windows-tests&lt;/id&gt; &lt;activation&gt; &lt;os&gt; &lt;family&gt;Windows&lt;/family&gt; &lt;/os&gt; &lt;/activation&gt; &lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.eclipse.tycho&lt;/groupId&gt; &lt;artifactId&gt;tycho-surefire-plugin&lt;/artifactId&gt; &lt;version&gt;${tychoVersion}&lt;/version&gt; &lt;configuration&gt; &lt;environmentVariables&gt; &lt;PATH&gt;${dependenciesDir}${path.separator}{env.PATH}&lt;/PATH&gt; &lt;/environmentVariables&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;/profile&gt; &lt;profile&gt; &lt;id&gt;linux-tests&lt;/id&gt; &lt;activation&gt; &lt;os&gt; &lt;family&gt;Linux&lt;/family&gt; &lt;/os&gt; &lt;/activation&gt; &lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.eclipse.tycho&lt;/groupId&gt; &lt;artifactId&gt;tycho-surefire-plugin&lt;/artifactId&gt; &lt;version&gt;${tychoVersion}&lt;/version&gt; &lt;configuration&gt; &lt;environmentVariables&gt; &lt;LD_LIBRARY_PATH&gt;${dependenciesDir}${path.separator}{env.LD_LIBRARY_PATH}&lt;/LD_LIBRARY_PATH&gt; &lt;/environmentVariables&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;/profile&gt; </code></pre>
 

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