Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Change the <code>pom.xml</code> file and use the <code>&lt;Embed-Dependency&gt;</code> directive. A similar example can be found <a href="http://colab.interlegis.gov.br/file/lexml/ToolKit/trunk/toolkit/pom.xml?rev=4076" rel="nofollow noreferrer">here</a> so you can adapt it to your scenario.</p> <pre><code>&lt;Embed-Dependency&gt;*;scope=!test;inline=true&lt;/Embed-Dependency&gt; </code></pre> <p>I think this should do the trick.</p> <hr> <p>Here is the example at the above URL that seems to give timeout.</p> <pre><code>&lt;project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"&gt; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt; &lt;groupId&gt;br.gov.lexml&lt;/groupId&gt; &lt;artifactId&gt;toolkit&lt;/artifactId&gt; &lt;packaging&gt;bundle&lt;/packaging&gt; &lt;version&gt;3.0&lt;/version&gt; &lt;parent&gt; &lt;artifactId&gt;lexml&lt;/artifactId&gt; &lt;groupId&gt;br.gov.lexml&lt;/groupId&gt; &lt;version&gt;1.0&lt;/version&gt; &lt;/parent&gt; &lt;build&gt; &lt;finalName&gt;Lexml_Toolkit-2.0&lt;/finalName&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt; &lt;configuration&gt; &lt;source&gt;1.5&lt;/source&gt; &lt;target&gt;1.5&lt;/target&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.felix&lt;/groupId&gt; &lt;artifactId&gt;maven-bundle-plugin&lt;/artifactId&gt; &lt;extensions&gt;true&lt;/extensions&gt; &lt;configuration&gt; &lt;instructions&gt; &lt;!--_include&gt;src/toolkit/resources/META-INF/MANIFEST.MF&lt;/_include--&gt; &lt;Export-Package&gt;*;-split-package:=merge-last&lt;/Export-Package&gt; &lt;Bundle-Activator&gt;br.gov.lexml.borda.Toolkit&lt;/Bundle-Activator&gt; &lt;Bundle-Name&gt;Toolkit&lt;/Bundle-Name&gt; &lt;Private-Package /&gt; &lt;Embed-Dependency&gt;*;scope=!test;inline=true&lt;/Embed-Dependency&gt; &lt;Bundle-ClassPath&gt;.,{maven-dependencies}&lt;/Bundle-ClassPath&gt; &lt;/instructions&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;org.apache.xmlbeans&lt;/groupId&gt; &lt;artifactId&gt;xmlbeans&lt;/artifactId&gt; &lt;version&gt;2.4.0&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;org.apache.xmlbeans&lt;/groupId&gt; &lt;artifactId&gt;xmlbeans-xmlpublic&lt;/artifactId&gt; &lt;version&gt;2.4.0&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;log4j&lt;/groupId&gt; &lt;artifactId&gt;log4j&lt;/artifactId&gt; &lt;version&gt;1.2.15&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;br.gov.lexmlbeans&lt;/groupId&gt; &lt;artifactId&gt;lexmlbeans&lt;/artifactId&gt; &lt;version&gt;3.0&lt;/version&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;/project&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