Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I recall that is a maven 3 compatibility problem. According to the notes: <a href="https://cwiki.apache.org/MAVEN/maven-3x-compatibility-notes.html#Maven3.xCompatibilityNotes-TransportProtocols%2528Wagons%2529" rel="nofollow">https://cwiki.apache.org/MAVEN/maven-3x-compatibility-notes.html#Maven3.xCompatibilityNotes-TransportProtocols%2528Wagons%2529</a></p> <blockquote> <p>Unlike Maven 2, Maven 3 supports out of the box only http:, https: and file: as transport protocols. To use other transport protocols like scp:, the appropriate wagons have to be explicitly declared in the POM as a build extension. If the wagon in question is only used for deployment to a repository, it can alternatively be declared as a dependency of the Maven Deploy Plugin.</p> </blockquote> <p>So make sure you are using Maven 3, otherwise you have to download your own wagon as an maven extension. Here is a guide to using Maven extensions: <a href="http://maven.apache.org/guides/mini/guide-using-extensions.html" rel="nofollow">http://maven.apache.org/guides/mini/guide-using-extensions.html</a></p> <p><strong>Note:</strong> Wagon 1.0-beta-3+ requires Maven 2.1.0 or above. For Maven 2.0.10 and earlier, use Wagon 1.0-beta-2.</p> <pre><code>&lt;project&gt; ... &lt;build&gt; &lt;extensions&gt; &lt;extension&gt; &lt;groupId&gt;org.apache.maven.wagon&lt;/groupId&gt; &lt;artifactId&gt;wagon-file&lt;/artifactId&gt; &lt;version&gt;1.0-beta-3&lt;/version&gt; &lt;/extension&gt; &lt;/extensions&gt; &lt;/build&gt; ... &lt;/project&gt; </code></pre> <p>That should resolve your issue. If it doesn't work, double check your maven path to see if different versions don't conflict.</p>
    singulars
    1. This table or related slice is empty.
    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.
    2. 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