You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shale.apache.org by cr...@apache.org on 2007/01/08 02:53:28 UTC

svn commit: r493901 - /shale/framework/trunk/pom.xml

Author: craigmcc
Date: Sun Jan  7 17:53:27 2007
New Revision: 493901

URL: http://svn.apache.org/viewvc?view=rev&rev=493901
Log:
The changes made for SHALE-319 included removing the java.net repository,
based on the assumption that this was being mirrorred to central.  This
assumption turns out to be incorrect, so the changes I recently made in
shale-test will break the build for you unless you have happened to download
javax.faces:jsf-impl:1.2_02 yourself, and manually installed it.

To rectify this issue, I am re-adding the java.net Maven1 repository -- but
using a mirror available via http instead of https to avoid problems with
broken corporate firewalls and flaky Maven2 support for https proxying in
versions <= 2.0.4.

Modified:
    shale/framework/trunk/pom.xml

Modified: shale/framework/trunk/pom.xml
URL: http://svn.apache.org/viewvc/shale/framework/trunk/pom.xml?view=diff&rev=493901&r1=493900&r2=493901
==============================================================================
--- shale/framework/trunk/pom.xml (original)
+++ shale/framework/trunk/pom.xml Sun Jan  7 17:53:27 2007
@@ -56,6 +56,15 @@
             <url>http://people.apache.org/repo/m2-snapshot-repository</url>
             <releases><enabled>false</enabled></releases>
         </repository>
+        <repository>
+            <id>java.net</id>
+<!--
+            <url>https://maven-repository.dev.java.net/nonav/repository</url>
+-->
+            <!-- Mirror of standard repository that uses http not https -->
+            <url>http://maven1.glassfishwiki.org</url>
+            <layout>legacy</layout>
+        </repository>
     </repositories>
 
     <!-- http://jira.codehaus.org/browse/MNG-2136 -->