Lars Corneliussen created NPANDAY-560:
-----------------------------------------

             Summary: [regression to NPANDAY-231] Resolve attached *.exe.config 
/ or any other known attachment
                 Key: NPANDAY-560
                 URL: https://issues.apache.org/jira/browse/NPANDAY-560
             Project: NPanday
          Issue Type: Bug
          Components: Maven Plugins
    Affects Versions: 1.5.0-incubating
            Reporter: Lars Corneliussen
             Fix For: 1.5.0-incubating


Code that got removed

{code}

if ( !ArtifactTypeHelper.isDotnetExecutableConfig( type ) || 
!dotnetFile.exists() )// TODO: Generalize to any attached artifact
                    {
                        logger.warning( "NPANDAY-180-018: Not found in local 
repository, now retrieving artifact from wagon:"
                                + assembly.getId()
                                + ", Failed Path Check = " + 
dotnetFile.getAbsolutePath());

                        try
                        {
                            artifactResolver.resolve( assembly, 
artifactRepositories,
                                                      localArtifactRepository );

                            projectDependency.setResolved( true );
                            
                            if ( assembly != null && 
assembly.getFile().exists() )
                            {
                                dotnetFile.getParentFile().mkdirs();
                                FileUtils.copyFile( assembly.getFile(), 
dotnetFile );
                                assembly.setFile( dotnetFile );
                            }
                        }
                        catch ( ArtifactNotFoundException e )
                        {
                            logger.log(Level.SEVERE, "NPANDAY-180-0201: Error 
resolving artifact. Reason:", e);
                            throw new ProjectDaoException(
                                                   "NPANDAY-180-020: Problem in 
resolving artifact: Artifact = "
                                                       + assembly.getId()
                                                       + ", Message = " + 
e.getMessage(), e );
                        }
                        catch ( ArtifactResolutionException e )
                        {
                            logger.log( Level.SEVERE, "NPANDAY-180-019: Problem 
in resolving artifact: Artifact = "
                                              + assembly.getId()
                                              + ", Message = " + 
e.getMessage(), e );
                            throw new ProjectDaoException(
                                                   "NPANDAY-180-019: Problem in 
resolving artifact: Artifact = "
                                                       + assembly.getId()
                                                       + ", Message = " + 
e.getMessage(), e );
                        }
                    }
                    artifactDependencies.add( assembly );
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to