MAVEN-1789 : Change the default repository to http://repo1.maven.org/maven/
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@454205 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
24cdca5969
commit
83afd491d4
@ -85,7 +85,7 @@ maven plugin:download
|
|||||||
For a manual installation, you can download the Maven Announcement plugin
|
For a manual installation, you can download the Maven Announcement plugin
|
||||||
here:
|
here:
|
||||||
|
|
||||||
http://www.ibiblio.org/maven/maven/plugins/maven-announcement-plugin-1.1.jar
|
http://repo1.maven.org/maven/maven/plugins/maven-announcement-plugin-1.1.jar
|
||||||
|
|
||||||
Have fun!
|
Have fun!
|
||||||
-The development team
|
-The development team
|
||||||
|
|||||||
@ -49,7 +49,7 @@ ${dep.ArtifactId}-Implementation-Version: ${dep.Version}
|
|||||||
#if($dep.Url)
|
#if($dep.Url)
|
||||||
${dep.ArtifactId}-Implementation-URL: ${dep.Url}
|
${dep.ArtifactId}-Implementation-URL: ${dep.Url}
|
||||||
#else
|
#else
|
||||||
${dep.ArtifactId}-Implementation-URL: http://www.ibiblio.org/maven/
|
${dep.ArtifactId}-Implementation-URL: http://repo1.maven.org/maven/
|
||||||
#end
|
#end
|
||||||
#end
|
#end
|
||||||
#end
|
#end
|
||||||
|
|||||||
@ -25,6 +25,7 @@
|
|||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<release version="1.8.1-SNAPSHOT" date="In SVN">
|
<release version="1.8.1-SNAPSHOT" date="In SVN">
|
||||||
|
<action dev="aheritier" type="update" issue="MAVEN-1789">Change the default repository to http://repo1.maven.org/maven/ for dependencies url in the manifest.</action>
|
||||||
<action dev="ltheussl" type="fix" issue="MPARTIFACT-72">Creating an upload-bundle for a plugin without any java code does not work.</action>
|
<action dev="ltheussl" type="fix" issue="MPARTIFACT-72">Creating an upload-bundle for a plugin without any java code does not work.</action>
|
||||||
<action dev="aheritier" type="update">Use a custom build of velocity (1.5-20060721.044818) to wait for a release of velocity 1.5 which will fix the issue VELOCITY-193 (The horrible error : "log4j:ERROR Attempted to append to closed appender named [null]").</action>
|
<action dev="aheritier" type="update">Use a custom build of velocity (1.5-20060721.044818) to wait for a release of velocity 1.5 which will fix the issue VELOCITY-193 (The horrible error : "log4j:ERROR Attempted to append to closed appender named [null]").</action>
|
||||||
<action dev="ltheussl" type="update">Update jelly dependency to match the ones in maven 1.1 core.</action>
|
<action dev="ltheussl" type="update">Update jelly dependency to match the ones in maven 1.1 core.</action>
|
||||||
|
|||||||
@ -22,7 +22,7 @@ maven.checkstyle.header.file = ${basedir}/../../../../plugins-common/checkstyle-
|
|||||||
|
|
||||||
# Ensure that Maven will be able to download the findbugs plugin for the
|
# Ensure that Maven will be able to download the findbugs plugin for the
|
||||||
# tests
|
# tests
|
||||||
maven.repo.remote = http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository/
|
maven.repo.remote = http://repo1.maven.org/maven,http://maven-plugins.sourceforge.net/repository/
|
||||||
|
|
||||||
# Put line count at a low number so that we can get Simian-reported errors
|
# Put line count at a low number so that we can get Simian-reported errors
|
||||||
maven.simian.linecount = 5
|
maven.simian.linecount = 5
|
||||||
|
|||||||
@ -150,9 +150,9 @@
|
|||||||
|
|
||||||
<mkdir dir="lib"></mkdir>
|
<mkdir dir="lib"></mkdir>
|
||||||
|
|
||||||
<get dest="lib/commons-logging-1.0.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.2.jar"></get>
|
<get dest="lib/commons-logging-1.0.2.jar" usetimestamp="true" ignoreerrors="true" src="http://repo1.maven.org/maven/commons-logging/jars/commons-logging-1.0.2.jar"></get>
|
||||||
|
|
||||||
<get dest="lib/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar"></get>
|
<get dest="lib/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://repo1.maven.org/maven/junit/jars/junit-3.8.1.jar"></get>
|
||||||
|
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|||||||
@ -129,7 +129,7 @@
|
|||||||
<ant:attribute name="${dep.artifactId}-Implementation-Version" value="${dep.version}"/>
|
<ant:attribute name="${dep.artifactId}-Implementation-Version" value="${dep.version}"/>
|
||||||
<j:choose>
|
<j:choose>
|
||||||
<j:when test="${empty(dep.url) || dep.url.toString().trim().length() == 0}">
|
<j:when test="${empty(dep.url) || dep.url.toString().trim().length() == 0}">
|
||||||
<ant:attribute name="${dep.artifactId}-Implementation-URL" value="http://www.ibiblio.org/maven${artifact.urlPath}"/>
|
<ant:attribute name="${dep.artifactId}-Implementation-URL" value="http://repo1.maven.org/maven${artifact.urlPath}"/>
|
||||||
</j:when>
|
</j:when>
|
||||||
<j:otherwise>
|
<j:otherwise>
|
||||||
<ant:attribute name="${dep.artifactId}-Implementation-URL" value="${dep.url}"/>
|
<ant:attribute name="${dep.artifactId}-Implementation-URL" value="${dep.url}"/>
|
||||||
|
|||||||
@ -25,6 +25,7 @@
|
|||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<release version="1.9-SNAPSHOT" date="In SVN">
|
<release version="1.9-SNAPSHOT" date="In SVN">
|
||||||
|
<action dev="aheritier" type="update" issue="MAVEN-1789">Change the default repository to http://repo1.maven.org/maven/ for dependencies url in the manifest.</action>
|
||||||
<action dev="aheritier" type="update">Use a custom build of velocity (1.5-20060721.044818) to wait for a release of velocity 1.5 which will fix the issue VELOCITY-193 (The horrible error : "log4j:ERROR Attempted to append to closed appender named [null]").</action>
|
<action dev="aheritier" type="update">Use a custom build of velocity (1.5-20060721.044818) to wait for a release of velocity 1.5 which will fix the issue VELOCITY-193 (The horrible error : "log4j:ERROR Attempted to append to closed appender named [null]").</action>
|
||||||
</release>
|
</release>
|
||||||
<release version="1.8" date="2006-04-26">
|
<release version="1.8" date="2006-04-26">
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
#=====
|
#=====
|
||||||
|
|
||||||
# TODO: remove http://people.apache.org/repo/m1-snapshot-repository/, just there for SNAPSHOTs
|
# TODO: remove http://people.apache.org/repo/m1-snapshot-repository/, just there for SNAPSHOTs
|
||||||
maven.repo.remote = http://www.ibiblio.org/maven,http://people.apache.org/repo/m1-snapshot-repository/
|
maven.repo.remote = http://repo1.maven.org/maven,http://people.apache.org/repo/m1-snapshot-repository/
|
||||||
|
|
||||||
# Repository to deploy to
|
# Repository to deploy to
|
||||||
maven.repo.list=apache.snapshots
|
maven.repo.list=apache.snapshots
|
||||||
|
|||||||
@ -35,7 +35,7 @@
|
|||||||
</section>
|
</section>
|
||||||
<section name="Download snapshots">
|
<section name="Download snapshots">
|
||||||
<p>The command to download a snapshot is :</p>
|
<p>The command to download a snapshot is :</p>
|
||||||
<source>maven plugin:download -DgroupId=maven -DartifactId=<i><maven-XXX-plugin></i> -Dversion=<i><X.Y.Z></i>-SNAPSHOT -Dmaven.repo.remote=http://www.ibiblio.org/maven,http://people.apache.org/repo/m1-snapshot-repository/</source>
|
<source>maven plugin:download -DgroupId=maven -DartifactId=<i><maven-XXX-plugin></i> -Dversion=<i><X.Y.Z></i>-SNAPSHOT -Dmaven.repo.remote=http://repo1.maven.org/maven,http://people.apache.org/repo/m1-snapshot-repository/</source>
|
||||||
<p>We can't give you the list of the snapshots deployed by our developers, but you can find them here : <a href="http://people.apache.org/repo/m1-snapshot-repository/maven/plugins/" target="_blank">http://people.apache.org/repo/m1-snapshot-repository/maven/plugins/</a>
|
<p>We can't give you the list of the snapshots deployed by our developers, but you can find them here : <a href="http://people.apache.org/repo/m1-snapshot-repository/maven/plugins/" target="_blank">http://people.apache.org/repo/m1-snapshot-repository/maven/plugins/</a>
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@ -35,7 +35,7 @@ maven.xdoc.legend=true
|
|||||||
# If it is not defined, then the Download report will not be added to the
|
# If it is not defined, then the Download report will not be added to the
|
||||||
# navigation menu.
|
# navigation menu.
|
||||||
# NOTE: In the future this information will be described in the POM
|
# NOTE: In the future this information will be described in the POM
|
||||||
# Ex: maven.xdoc.distributionUrl=http://www.ibiblio.org/maven/maven/plugins
|
# Ex: maven.xdoc.distributionUrl=http://repo1.maven.org/maven/maven/plugins
|
||||||
|
|
||||||
# Type of the distributed artifact. Defaults to jar. Override this property if
|
# Type of the distributed artifact. Defaults to jar. Override this property if
|
||||||
# your project is distributing artifacts of a different type.
|
# your project is distributing artifacts of a different type.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user