Hi laredotornado, > still ran into the same error
Sorry, not enough coffee this morning. The developerConnection of SCM is used for committing/pushing source changes. And of course distributionManagement is what is used for deploy of Maven artifacts to your remote Maven repository. So I am not sure what is wrong with your config, then. You don't have a <snapshotRepository> but you are not trying to deploy a snapshot, right? (Since you are using maven-release-plugin, I assume you are attempting to deploy a release.) In case it helps, here is the <distributionManagement> section of my projects' parent POM, which works for us: <distributionManagement> <repository> <id>imagej.releases</id> <name>ImageJ Releases Repository</name> <url>dav:http://maven.imagej.net/content/repositories/releases</url> </repository> <snapshotRepository> <id>imagej.snapshots</id> <name>ImageJ Snapshots Repository</name> <url>dav:http://maven.imagej.net/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> We use Apache2 with WebDAV, with a Nexus on port 8081 and proxied through port 80. Have you verified that your DAV is working properly by connecting with a known-working WebDAV client (e.g., http://www.davexplorer.org/)? HTH, Curtis On Fri, Jun 28, 2013 at 11:10 AM, laredotornado-3 <laredotorn...@gmail.com>wrote: > Hi, Per your suggestion, I added a developerConnection alongside the > <connection> and upgraded to the 1.0 connector, but still ran into the same > error. Note that the distrubtionManagemetn is next to scm, not inside. > Here is the updated pom ... > > > <?xml version="1.0"?> > <project xmlns="http://maven.apache.org/POM/4.0.0" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 > http://maven.apache.org/xsd/maven-4.0.0.xsd"> > <modelVersion>4.0.0</modelVersion> > <groupId>org.mainco.subco</groupId> > <artifactId>test</artifactId> > <version>1.3-SNAPSHOT</version> > <name>test</name> > <url>http://maven.apache.org</url> > <properties> > > <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> > </properties> > <dependencies> > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <version>3.8.1</version> > <scope>test</scope> > </dependency> > </dependencies> > > <build> > <extensions> > <extension> > <groupId>org.apache.maven.wagon</groupId> > > <artifactId>wagon-webdav-jackrabbit</artifactId> > <version>1.0</version> > </extension> > </extensions> > </build> > > <scm> > > <connection>scm:svn: > https://subversion.bidomain/svn/subco-digital.coderepo/repo</connection> > > <developerConnection>scm:svn: > https://subversion.bidomain/svn/subco-digital.coderepo/repo > </developerConnection> > </scm> > <distributionManagement> > <repository> > <id>cloudbees-private-repository</id> > <url>dav: > https://repository-vendor.forge.externaldomain/release/</url> > </repository> > </distributionManagement> > </project> > > Error was "Failed to execute goal > org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on > project test: Failed to deploy artifacts/metadata: No connector available > to > access repository cloudbees-private-repository > (dav:https://repository-vendor.forge.externaldomain/release/) of type > default using the available factories WagonRepositoryConnectorFactory -> > [Help 1]". > > > > -- > View this message in context: > http://maven.40175.n5.nabble.com/Having-trouble-using-Maven-release-plugin-to-deploy-artifact-to-a-dav-repo-tp5761093p5761109.html > Sent from the Maven - Users mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@maven.apache.org > For additional commands, e-mail: users-h...@maven.apache.org > >