On 06/18/2014 13:47, David A. Kovacic wrote: > We (Case Western Reserve) did try following the links that were failing > to the repositories by entering them in a browser and found that the > Maven 2 repositories had changed (the branch of the tree we got to - > http://oss.sonatype.org/content/repositories/releases/org/ > <http://oss.sonatype.org/content/repositories/releases/org/jasig/cas/cas-server-integration-restlet/4.0.0/cas-server-integration-restlet-4.0.0.pom> > was modified 6/14/14). The lower branches in the links that Maven was > trying to find were all missing. We've talked with support at Sonatype > and while their suggestions cleared up a majority of the issues, we > still have not gotten a successful build since 6/13 when we started a > fresh install of 3.5.2.1. We also are running on a Linux system (RHEL 6). > > In short, this looks like something either the folks at Sonatype will > have to change/correct or that the folks at JASig will need to update > (working with Sonatype) will need to update to accommodate the changes > to the repositories. > > Still the same problem here (freebsd workstation): problem with double-redirect (http://developer.ja-sig.org -> http://oss.sonatype.org -> https://oss.sonatype.org)
successful workaround with a local proxy:
in /etc/hosts:
127.0.0.1 developer.ja-sig.org
in nginx.conf:
server {
server_name developer.ja-sig.org;
root /usr/local/www/nada;
listen 127.0.0.1:80;
location /maven2 {
proxy_pass https://oss.sonatype.org/content/repositories/releases;
proxy_http_version 1.1;
}
}
My 2 cts…
ps: I tried changing url of 'jasig-repository' in root's pom.xml, but
doesn't seems to be used when building my 'overlay'…
--
*geoffroy desvernay*
C.R.I - Administration systèmes et réseaux
Ecole Centrale de Marseille
Tel: (+33|0)4 91 05 45 24
Fax: (+33|0)4 91 05 44 26
signature.asc
Description: OpenPGP digital signature
