Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Thanks a lot, have been searching for a solution to this problem for some hours now. :) Will ad my pom in case this might help somebody else out too.</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/xsd/maven-4.0.0.xsd"&gt; &lt;parent&gt; &lt;artifactId&gt;appletree.be-multi&lt;/artifactId&gt; &lt;groupId&gt;be.appletree&lt;/groupId&gt; &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt; &lt;/parent&gt; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt; &lt;artifactId&gt;appletree.be-ear&lt;/artifactId&gt; &lt;packaging&gt;ear&lt;/packaging&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;be.appletree&lt;/groupId&gt; &lt;artifactId&gt;appletree.be-domain&lt;/artifactId&gt; &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt; &lt;type&gt;jar&lt;/type&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;be.appletree&lt;/groupId&gt; &lt;artifactId&gt;appletree.be-ejb&lt;/artifactId&gt; &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt; &lt;type&gt;ejb&lt;/type&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;be.appletree&lt;/groupId&gt; &lt;artifactId&gt;appletree.be-web&lt;/artifactId&gt; &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt; &lt;type&gt;war&lt;/type&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;artifactId&gt;maven-ear-plugin&lt;/artifactId&gt; &lt;version&gt;2.8&lt;/version&gt; &lt;configuration&gt; &lt;modules&gt; &lt;jarModule&gt; &lt;groupId&gt;be.appletree&lt;/groupId&gt; &lt;artifactId&gt;appletree.be-domain&lt;/artifactId&gt; &lt;includeInApplicationXml&gt;true&lt;/includeInApplicationXml&gt; &lt;/jarModule&gt; &lt;webModule&gt; &lt;groupId&gt;be.appletree&lt;/groupId&gt; &lt;artifactId&gt;appletree.be-web&lt;/artifactId&gt; &lt;/webModule&gt; &lt;ejbModule&gt; &lt;groupId&gt;be.appletree&lt;/groupId&gt; &lt;artifactId&gt;appletree.be-ejb&lt;/artifactId&gt; &lt;/ejbModule&gt; &lt;/modules&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&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