Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <blockquote> <p>I was able to solve this issue on my Linux box by manually installing some required artifacts (...)</p> </blockquote> <p>Manually installing an artifact is a bad practice (it makes your build non portable as you're experiencing) and, actually, there is no reason to install the artifacts you're looking for manually, they're both available in the <a href="http://repository.jboss.org/maven2/" rel="nofollow noreferrer">JBoss repository</a>. So, add it to the list of "declared" repositories:</p> <pre><code>&lt;project&gt; ... &lt;repositories&gt; &lt;repository&gt; &lt;id&gt;repository.jboss.org&lt;/id&gt; &lt;name&gt;Jboss Repository for Maven&lt;/name&gt; &lt;url&gt;http://repository.jboss.org/maven2&lt;/url&gt; &lt;/repository&gt; &lt;/repositories&gt; ... &lt;/project&gt; </code></pre> <p>And then declare the following dependencies:</p> <pre><code>&lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;org.hibernate&lt;/groupId&gt; &lt;artifactId&gt;hibernate-core&lt;/artifactId&gt; &lt;version&gt;3.3.2.GA&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;javassist&lt;/groupId&gt; &lt;artifactId&gt;javassist&lt;/artifactId&gt; &lt;version&gt;3.9.0.GA&lt;/version&gt; &lt;/dependency&gt; &lt;/dependencies&gt; </code></pre> <p>Note the dependency on <code>hibernate-core</code> (<a href="http://repository.jboss.org/maven2/org/hibernate/hibernate/3.3.2.GA/" rel="nofollow noreferrer">http://repository.jboss.org/maven2/org/hibernate/hibernate/3.3.2.GA/</a> contains only a pom).</p>
    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. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    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