Return-Path: X-Original-To: apmail-maven-users-archive@www.apache.org Delivered-To: apmail-maven-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1296617A51 for ; Thu, 5 Nov 2015 10:40:25 +0000 (UTC) Received: (qmail 75067 invoked by uid 500); 5 Nov 2015 10:40:24 -0000 Delivered-To: apmail-maven-users-archive@maven.apache.org Received: (qmail 74997 invoked by uid 500); 5 Nov 2015 10:40:24 -0000 Mailing-List: contact users-help@maven.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Maven Users List" Reply-To: "Maven Users List" Delivered-To: mailing list users@maven.apache.org Received: (qmail 74986 invoked by uid 99); 5 Nov 2015 10:40:23 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Nov 2015 10:40:23 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 6AADAC070B for ; Thu, 5 Nov 2015 10:40:23 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.01 X-Spam-Level: X-Spam-Status: No, score=-0.01 tagged_above=-999 required=6.31 tests=[T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id d1IBlFUag7FZ for ; Thu, 5 Nov 2015 10:40:08 +0000 (UTC) Received: from monica.sharp.fm (monica.sharp.fm [80.168.143.5]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTP id 15C6D44509 for ; Thu, 5 Nov 2015 10:40:08 +0000 (UTC) Received: from [192.168.220.234] (unknown [192.168.220.234]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: minfrin@sharp.fm) by monica.sharp.fm (Postfix) with ESMTPSA id 7D20080C84 for ; Thu, 5 Nov 2015 10:40:07 +0000 (GMT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: How easy/reliable is a maven repo hosted on webdav? From: Graham Leggett In-Reply-To: Date: Thu, 5 Nov 2015 12:40:06 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: References: To: Maven Users List X-Mailer: Apple Mail (2.2104) On 05 Nov 2015, at 2:13 AM, Kevin Burton wrote: > I need to setup a new maven repo due to some changes we're making in = our CI > framework. >=20 > Basically, I want something simple.. I was looking at bintray and > artifactory and I think they are overkill for what we need and could = be > rather expensive per year. >=20 > We already have plenty of hardware so I just want something simple. >=20 > We used to use SCP but I don't want to give our CI hosting provider / = SAAS > the ability to auth into our cluster. >=20 > WebDAV seems ideal because it could just work with plain old apache. >=20 > However, I can't find any documentation for how to set this up. I=E2=80=99ve used webdav based repos for years, and they work well. On the server side you just need plain old Apache, secure with = username/password or certs (but if you use certs, make sure you use a = version of maven that supports them, some of the versions are broken = with respect to SSL handling with respect to certs and/or SNI) In the pom, I have a distributionManagement section that looks like = this: repo.example.com Example Repository dav:https://repo.example.com/dev/maven2 repo.example.com ${project.name} Website = dav:https://repo.example.com/dev/docs/${project.artifactId}/${project= .version}/ I=E2=80=99ve also used this extension, though not sure if it is still = required: ... org.apache.maven.wagon wagon-webdav 1.0-beta-2 =E2=80=A6 Regards, Graham =E2=80=94 --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@maven.apache.org For additional commands, e-mail: users-help@maven.apache.org