PR: MNG-1196

Submitted by: Johnny R. Ruiz III
rename variable to avoid conflict with m1


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@321336 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-10-15 13:31:20 +00:00
parent d817a178ef
commit 6e0d411886
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ public class AddMavenRepoMojo extends AbstractMojo
* installation. For example, if you installed eclipse into <code>c:\eclipse</code>, the
* workspace is <code>c:\eclipse\workspace</code>.
*
* @parameter
* @parameter expression="${eclipse.workspace}"
* @required
*/
private String workspace;
@ -64,7 +64,7 @@ public class AddMavenRepoMojo extends AbstractMojo
{
FileWriter fWriter = new FileWriter( f );
fWriter.write( "\norg.eclipse.jdt.core.classpathVariable.MAVEN_REPO=" + localRepository.getBasedir() );
fWriter.write( "\norg.eclipse.jdt.core.classpathVariable.M2_REPO=" + localRepository.getBasedir() );
fWriter.flush();