You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Matt Whitlock (JIRA)" <ji...@codehaus.org> on 2006/12/15 01:04:40 UTC

[jira] Created: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Incorrect artifact naming scheme revealed by today's change
-----------------------------------------------------------

                 Key: MDEP-51
                 URL: http://jira.codehaus.org/browse/MDEP-51
             Project: Maven 2.x Dependency Plugin
          Issue Type: Bug
    Affects Versions: 2.0-alpha-1
            Reporter: Matt Whitlock
         Assigned To: Brian Fox
            Priority: Critical


http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234

            destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
                + artifact.getType();

Should be:

            destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
                + artifact.getType();

Please 

-- 
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

        

[jira] Work started: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Brian Fox (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-51?page=all ]

Work on MDEP-51 started by Brian Fox.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Closed: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Brian Fox (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-51?page=all ]

Brian Fox closed MDEP-51.
-------------------------

       Resolution: Fixed
    Fix Version/s: 2.0-alpha-1

Fixed and deployed. I don't see any snapshots getting resolved to timestamps in the plugin, please verify.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>             Fix For: 2.0-alpha-1
>
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Commented: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Brian Fox (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MDEP-51?page=comments#action_82688 ] 
            
Brian Fox commented on MDEP-51:
-------------------------------

use build 8, i found one more small issue where the strip version got messed up. All the cases are covered in the unit tests now.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>             Fix For: 2.0-alpha-1
>
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Commented: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Matt Whitlock (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MDEP-51?page=comments#action_82678 ] 
            
Matt Whitlock commented on MDEP-51:
-----------------------------------

I was trying to type: Please make this simple fix quickly, as it is blocking our build process.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Closed: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Brian Fox (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-51?page=all ]

Brian Fox closed MDEP-51.
-------------------------

    Resolution: Fixed

fixed again.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>             Fix For: 2.0-alpha-1
>
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Closed: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Matt Whitlock (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-51?page=all ]

Matt Whitlock closed MDEP-51.
-----------------------------

    Resolution: Fixed

SUCCESS!  Thanks for fixing this so quickly.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>             Fix For: 2.0-alpha-1
>
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Commented: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Matt Whitlock (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MDEP-51?page=comments#action_82679 ] 
            
Matt Whitlock commented on MDEP-51:
-----------------------------------

The recent change also breaks SNAPSHOT naming.  I get artifact-1.0-20061207.182722-4.jar instead of artifact-1.0-SNAPSHOT.jar like I should get.  Please put it back the way it was!

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Commented: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Matt Whitlock (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MDEP-51?page=comments#action_82686 ] 
            
Matt Whitlock commented on MDEP-51:
-----------------------------------

Trying again with build 7.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>             Fix For: 2.0-alpha-1
>
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Reopened: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Matt Whitlock (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-51?page=all ]

Matt Whitlock reopened MDEP-51:
-------------------------------

             

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>             Fix For: 2.0-alpha-1
>
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Work started: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Brian Fox (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-51?page=all ]

Work on MDEP-51 started by Brian Fox.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>             Fix For: 2.0-alpha-1
>
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Reopened: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Brian Fox (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MDEP-51?page=all ]

Brian Fox reopened MDEP-51:
---------------------------

             
The SNAPSHOT is being replaced now.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>             Fix For: 2.0-alpha-1
>
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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

        

[jira] Commented: (MDEP-51) Incorrect artifact naming scheme revealed by today's change

Posted by "Matt Whitlock (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MDEP-51?page=comments#action_82685 ] 
            
Matt Whitlock commented on MDEP-51:
-----------------------------------

Change fixes the position of the classifier in the file name, but I'm still getting the timestamp issue.

It's only the transitive snapshot dependencies that are coming up with timestamp versions.  The direct dependencies are named with SNAPSHOT, as they should be.

> Incorrect artifact naming scheme revealed by today's change
> -----------------------------------------------------------
>
>                 Key: MDEP-51
>                 URL: http://jira.codehaus.org/browse/MDEP-51
>             Project: Maven 2.x Dependency Plugin
>          Issue Type: Bug
>    Affects Versions: 2.0-alpha-1
>            Reporter: Matt Whitlock
>         Assigned To: Brian Fox
>            Priority: Critical
>             Fix For: 2.0-alpha-1
>
>
> http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/utils/DependencyUtil.java?r1=482886&r2=487234
>             destFileName = artifact.getArtifactId() + "-" + artifact.getClassifier() + versionString + "."
>                 + artifact.getType();
> Should be:
>             destFileName = artifact.getArtifactId() + versionString + "-" + artifact.getClassifier() + "."
>                 + artifact.getType();
> Please 

-- 
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