You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "John Casey (JIRA)" <ji...@codehaus.org> on 2005/09/12 22:09:05 UTC

[jira] Reopened: (MNG-851) Hardcoded pom.xml name in InstallMojo.java

     [ http://jira.codehaus.org/browse/MNG-851?page=all ]
     
John Casey reopened MNG-851:
----------------------------


reopening to adjust remaining time.

> Hardcoded pom.xml name in InstallMojo.java
> ------------------------------------------
>
>          Key: MNG-851
>          URL: http://jira.codehaus.org/browse/MNG-851
>      Project: Maven 2
>         Type: Bug
>   Components: maven-plugins
>     Versions: 2.0-beta-1
>     Reporter: Guest
>     Assignee: John Casey
>     Priority: Blocker
>      Fix For: 2.0-beta-2

>
> Original Estimate: 2 hours
>        Time Spent: 1 hour
>         Remaining: 1 hour
>
> Just ran the install lifecycle against a pom with a made-up name but the code eventually looks for a file called pom.xml. Here's the command I ran
> m2 -f testpom.xml install
> and got an exception:
> Caused by: java.io.FileNotFoundException: /Users/developer/projects/java-source-repository/home/pom.xml (No such file or directory)
>         at java.io.FileInputStream.open(Native Method)
>         at java.io.FileInputStream.<init>(FileInputStream.java:106)
>         at java.io.FileReader.<init>(FileReader.java:55)
>         at org.apache.maven.project.artifact.ProjectArtifactMetadata.storeInLocalRepository(ProjectArtifactMetadata.java:82)
> a quick check of the source code reveals a hardcoded reference to pom.xml in InstallMojo.execute line 92 in my version:
>     public void execute()
>         throws MojoExecutionException
>     {
>         // TODO: push into transformation
>         boolean isPomArtifact = "pom".equals( packaging );
>         File pom = new File( basedir, "pom.xml" );
>         if ( !isPomArtifact )
> ...
> Just renamed the file back to pom.xml again and this time the install worked.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org