Revision 40480 trunk/org.gvsig.desktop/maven-howto.rst

View differences:

maven-howto.rst
188 188
      </executions>
189 189
    </plugin>
190 190

  
191
- Fail when execute "mvn deploy" with the error::
192

  
193
    [INFO] ------------------------------------------------------------------------
194
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project org.gvsig.desktop: Failed to deploy artifacts/metadata: No connector available to access repository gvsig-repository (dav:https://devel.gvsig.org/m2repo/j2se) of type default using the available factories WagonRepositoryConnectorFactory -> [Help 1]
195
    [ERROR] 
196
    
197
  This happens to be configured the webdav wagon as an extension in the section "build"::
198
  
199
    ...
200
    <build>
201
      <extensions>
202
          <extension>
203
              <groupId>org.apache.maven.wagon</groupId>
204
              <artifactId>wagon-webdav-jackrabbit</artifactId>
205
              <version>1.0-beta-7</version>
206
          </extension>
207
      </extensions>
208
    ...
209
    

Also available in: Unified diff