------ Maven Wagon SCM ------ Carlos Sanchez ------ 2011-09-22 ------ ~~ Licensed to the Apache Software Foundation (ASF) under one ~~ or more contributor license agreements. See the NOTICE file ~~ distributed with this work for additional information ~~ regarding copyright ownership. The ASF licenses this file ~~ to you under the Apache License, Version 2.0 (the ~~ "License"); you may not use this file except in compliance ~~ with the License. You may obtain a copy of the License at ~~ ~~ http://www.apache.org/licenses/LICENSE-2.0 ~~ ~~ Unless required by applicable law or agreed to in writing, ~~ software distributed under the License is distributed on an ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~~ KIND, either express or implied. See the License for the ~~ specific language governing permissions and limitations ~~ under the License. ~~ NOTE: For help with the syntax of this file, see: ~~ http://maven.apache.org/doxia/references/apt-format.html Maven Wagon SCM Usage You need to add some extensions (wagon-scm, maven-scm-manager-plexus and the maven-scm-provider for your SCM system, see examples below) to your pom and use URLs in the {{{http://maven.apache.org/scm/scm-url-format.html}SCM format}}. For non-subversion SCM, in your settings.xml file you can include the elements <<>> and <<>> to specify a branch or tag to use. The value of <<>> must be one of <<>> or <<>>. There is no default value for <<>> so you specify it with <<>> in order to have any effect. Deploying your Maven site to Subversion Add the following extensions to your pom and use a wagon-scm url in the distributionManagement site url. ------ org.apache.maven.wagon wagon-scm ${project.version} org.apache.maven.scm maven-scm-manager-plexus ${mavenScmVersion} org.apache.maven.scm maven-scm-provider-svnexe ${mavenScmVersion} my.svn.server scm:svn:https://username@svn.apache.org/svn/root/module ------ Deploying your Maven site to CVS Same as before, but changing svnexe to cvsexe and using a CVS svn url. ------ org.apache.maven.wagon wagon-scm ${project.version} org.apache.maven.scm maven-scm-manager-plexus ${mavenScmVersion} org.apache.maven.scm maven-scm-provider-cvsexe ${mavenScmVersion} my.cvs.server scm:cvs:ext:username@cvs.apache.org:/cvs/root:module ------ Deploying your Maven site to GitHub's gh-pages Same as before, but changing svnexe to gitexe and using a Git svn url. ------ org.apache.maven.wagon wagon-scm ${project.version} org.apache.maven.scm maven-scm-manager-plexus ${project.version} org.apache.maven.scm maven-scm-provider-gitexe ${project.version} my.git.server scm:git:ssh://git@github.com/myuser/myproject.git ------ And in your settings.xml file: ------ my.git.server git branch gh-pages ------ Using a Subversion based remote repository in Maven 2 Not tested yet Using a CVS based remote repository in Maven 2 Not tested yet