You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2011/03/21 00:06:50 UTC

svn commit: r1083609 - /maven/site/trunk/src/site/apt/guides/mini/guide-maven-evangelism.apt

Author: hboutemy
Date: Sun Mar 20 23:06:49 2011
New Revision: 1083609

URL: http://svn.apache.org/viewvc?rev=1083609&view=rev
Log:
precision between project and artifact

Modified:
    maven/site/trunk/src/site/apt/guides/mini/guide-maven-evangelism.apt

Modified: maven/site/trunk/src/site/apt/guides/mini/guide-maven-evangelism.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/mini/guide-maven-evangelism.apt?rev=1083609&r1=1083608&r2=1083609&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/mini/guide-maven-evangelism.apt (original)
+++ maven/site/trunk/src/site/apt/guides/mini/guide-maven-evangelism.apt Sun Mar 20 23:06:49 2011
@@ -15,10 +15,10 @@ Guide to add, improve or fix metadata in
 
  We don't change dependencies in POMs already in the repository anymore as builds need to be reproducible.
  Same applies to POMs that don't exist. We can only add a POM with no dependencies, because doing any other way
- would break previous builds that were using that project.
+ would break previous builds that were using that artifact.
  
- An alternative is to create a new version with the fixes. If the broken project is org.foo/bar/1.0 you can
- provide a fixed POM,JAR,... under org.foo/bar/1.0-1 (add a comment to the POM explaining what is being fixed
+ An alternative is to create a new version with the fixes. If the broken artifact is <<<org.foo/bar/1.0>>> you can
+ provide a fixed POM,JAR,... under <<<org.foo/bar/1.0-1>>> (add a comment to the POM explaining what is being fixed
  and why). See {{{./guide-central-repository-upload.html}Maven Repository Upload}} for the instructions to
  get this new version in the repository.