Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Check wagon-svn. It will allow you to 'deploy' to a Subversion repository. It's a little convoluted, but it's better than nothing. I know of a few projects that use it at java.net, and I also came across some projects using it at code.google.com.</p> <p>If you want to use it, then you first need to load wagon-svn as an extension:</p> <pre><code> &lt;build&gt; ... &lt;extensions&gt; &lt;extension&gt; &lt;groupId&gt;org.jvnet.wagon-svn&lt;/groupId&gt; &lt;artifactId&gt;wagon-svn&lt;/artifactId&gt; &lt;version&gt;...&lt;/version&gt; &lt;/extension&gt; &lt;/extensions&gt; </code></pre> <p>Next, you need to set your deployment targets using the svn: protocol identifier. Here's an example I copied from the Internet. </p> <pre><code>&lt;distributionManagement&gt; &lt;repository&gt; &lt;id&gt;maven-config-processor-plugin-repo-releases&lt;/id&gt; &lt;name&gt;Maven Repository for Config Processor Plugin (releases)&lt;/name&gt; &lt;url&gt;svn:https://maven-config-processor-plugin.googlecode.com/svn/maven-repo/releases&lt;/url&gt; &lt;uniqueVersion&gt;false&lt;/uniqueVersion&gt; &lt;/repository&gt; &lt;snapshotRepository&gt; &lt;id&gt;maven-config-processor-plugin-repo-releases&lt;/id&gt; &lt;name&gt;Maven Repository for Config Processor Plugin (snapshots)&lt;/name&gt; &lt;url&gt;svn:https://maven-config-processor-plugin.googlecode.com/svn/maven-repo/snapshots&lt;/url&gt; &lt;uniqueVersion&gt;false&lt;/uniqueVersion&gt; &lt;/snapshotRepository&gt; &lt;/distributionManagement&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. 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