Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I wasn't able to solve this problem with the <code>maven-assembly-plugin</code> in a satisfying way, so I went for a different solution. I used the <a href="http://code.google.com/p/onejar-maven-plugin/" rel="noreferrer">onejar-maven-plugin</a>:</p> <pre><code>&lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.dstovall&lt;/groupId&gt; &lt;artifactId&gt;onejar-maven-plugin&lt;/artifactId&gt; &lt;version&gt;1.4.4&lt;/version&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;build-first&lt;/id&gt; &lt;configuration&gt; &lt;mainClass&gt;classpath.to.first.Main&lt;/mainClass&gt; &lt;attachToBuild&gt;true&lt;/attachToBuild&gt; &lt;classifier&gt;onejar&lt;/classifier&gt; &lt;filename&gt;first-runnable.jar&lt;/filename&gt; &lt;/configuration&gt; &lt;goals&gt; &lt;goal&gt;one-jar&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;execution&gt; &lt;id&gt;build-second&lt;/id&gt; &lt;configuration&gt; &lt;mainClass&gt;classpath.to.second.Main&lt;/mainClass&gt; &lt;attachToBuild&gt;true&lt;/attachToBuild&gt; &lt;classifier&gt;onejar&lt;/classifier&gt; &lt;filename&gt;second-runnable.jar&lt;/filename&gt; &lt;/configuration&gt; &lt;goals&gt; &lt;goal&gt;one-jar&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;pluginRepositories&gt; &lt;pluginRepository&gt; &lt;id&gt;onejar-maven-plugin.googlecode.com&lt;/id&gt; &lt;url&gt;http://onejar-maven-plugin.googlecode.com/svn/mavenrepo&lt;/url&gt; &lt;/pluginRepository&gt; &lt;/pluginRepositories&gt; </code></pre>
    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.
    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