You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Papick G. Taboada (JIRA)" <ji...@codehaus.org> on 2007/03/12 22:24:34 UTC

[jira] Created: (MNG-2872) Don't append artifactId when parent pom already has artifactId in URL

Don't append artifactId when parent pom already has artifactId in URL
---------------------------------------------------------------------

                 Key: MNG-2872
                 URL: http://jira.codehaus.org/browse/MNG-2872
             Project: Maven 2
          Issue Type: Wish
    Affects Versions: 2.0.5
            Reporter: Papick G. Taboada
            Priority: Trivial


I want to define the url for all my projects from one central pom. the pom project itself has the same url structure as the child projects.

This is for all urls that can be inherited, e.g. distribution site, deployment url, etc.

I would like to specify some complete url like

protocol:/my.server.com/some/path/to/the/${groupId}/${artifactId}

For example, with the actual implementation I get either the parent pom site deployed to the groupId directory, or I get the child projects deployed to the grouId/artifactId/artifactId directory.

At the moment I have add the urls on every project, although they always have the same pattern.



-- 
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] Updated: (MNG-2872) Don't append artifactId when parent pom already has artifactId in URL

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-2872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brett Porter updated MNG-2872:
------------------------------

    Fix Version/s:     (was: Reviewed Pending Version Assignment)
                   2.1.x
      Component/s: Inheritance and Interpolation

> Don't append artifactId when parent pom already has artifactId in URL
> ---------------------------------------------------------------------
>
>                 Key: MNG-2872
>                 URL: http://jira.codehaus.org/browse/MNG-2872
>             Project: Maven 2
>          Issue Type: Wish
>          Components: Inheritance and Interpolation
>    Affects Versions: 2.0.5
>            Reporter: Papick G. Taboada
>            Priority: Trivial
>             Fix For: 2.1.x
>
>
> I want to define the url for all my projects from one central pom. the pom project itself has the same url structure as the child projects.
> This is for all urls that can be inherited, e.g. distribution site, deployment url, etc.
> I would like to specify some complete url like
> protocol:/my.server.com/some/path/to/the/${groupId}/${artifactId}
> For example, with the actual implementation I get either the parent pom site deployed to the groupId directory, or I get the child projects deployed to the grouId/artifactId/artifactId directory.
> At the moment I have add the urls on every project, although they always have the same pattern.

-- 
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: (MNG-2872) Don't append artifactId when parent pom already has artifactId in URL

Posted by "M. Rohrmoser (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-2872?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_95276 ] 

M. Rohrmoser commented on MNG-2872:
-----------------------------------

I ran into this one, too.

despite http://wiki.intranet.1and1.com/bin/view/GMXDev/DevSWI saying 
"Note: the trailing slash in the URL above indicates that any subprojects that inherit this value should append their artifact ID to the path instead of using it as-is." 
this seems not to be honoured if the <distributionManagement><site><url> is defined in a inherited (parent) pom. 


> Don't append artifactId when parent pom already has artifactId in URL
> ---------------------------------------------------------------------
>
>                 Key: MNG-2872
>                 URL: http://jira.codehaus.org/browse/MNG-2872
>             Project: Maven 2
>          Issue Type: Wish
>    Affects Versions: 2.0.5
>            Reporter: Papick G. Taboada
>            Priority: Trivial
>
> I want to define the url for all my projects from one central pom. the pom project itself has the same url structure as the child projects.
> This is for all urls that can be inherited, e.g. distribution site, deployment url, etc.
> I would like to specify some complete url like
> protocol:/my.server.com/some/path/to/the/${groupId}/${artifactId}
> For example, with the actual implementation I get either the parent pom site deployed to the groupId directory, or I get the child projects deployed to the grouId/artifactId/artifactId directory.
> At the moment I have add the urls on every project, although they always have the same pattern.

-- 
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: (MNG-2872) Don't append artifactId when parent pom already has artifactId in URL

Posted by "Benjamin Bentmann (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-2872?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benjamin Bentmann closed MNG-2872.
----------------------------------

       Resolution: Duplicate
    Fix Version/s:     (was: 3.x / Backlog)
         Assignee: Benjamin Bentmann

> Don't append artifactId when parent pom already has artifactId in URL
> ---------------------------------------------------------------------
>
>                 Key: MNG-2872
>                 URL: http://jira.codehaus.org/browse/MNG-2872
>             Project: Maven 2 & 3
>          Issue Type: New Feature
>          Components: Inheritance and Interpolation
>    Affects Versions: 2.0.5
>            Reporter: Papick G. Taboada
>            Assignee: Benjamin Bentmann
>            Priority: Trivial
>
> I want to define the url for all my projects from one central pom. the pom project itself has the same url structure as the child projects.
> This is for all urls that can be inherited, e.g. distribution site, deployment url, etc.
> I would like to specify some complete url like
> protocol:/my.server.com/some/path/to/the/${groupId}/${artifactId}
> For example, with the actual implementation I get either the parent pom site deployed to the groupId directory, or I get the child projects deployed to the grouId/artifactId/artifactId directory.
> At the moment I have add the urls on every project, although they always have the same pattern.

-- 
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] Issue Comment Edited: (MNG-2872) Don't append artifactId when parent pom already has artifactId in URL

Posted by "M. Rohrmoser (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-2872?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_95276 ] 

M. Rohrmoser edited comment on MNG-2872 at 5/13/07 1:12 PM:
------------------------------------------------------------

I ran into this one, too.

despite http://maven.apache.org/guides/mini/guide-site.html saying 
"Note: the trailing slash in the URL above indicates that any subprojects that inherit this value should append their artifact ID to the path instead of using it as-is." 
this seems not to be honoured if the <distributionManagement><site><url> is defined in a inherited (parent) pom. 



 was:
I ran into this one, too.

despite http://wiki.intranet.1and1.com/bin/view/GMXDev/DevSWI saying 
"Note: the trailing slash in the URL above indicates that any subprojects that inherit this value should append their artifact ID to the path instead of using it as-is." 
this seems not to be honoured if the <distributionManagement><site><url> is defined in a inherited (parent) pom. 


> Don't append artifactId when parent pom already has artifactId in URL
> ---------------------------------------------------------------------
>
>                 Key: MNG-2872
>                 URL: http://jira.codehaus.org/browse/MNG-2872
>             Project: Maven 2
>          Issue Type: Wish
>    Affects Versions: 2.0.5
>            Reporter: Papick G. Taboada
>            Priority: Trivial
>
> I want to define the url for all my projects from one central pom. the pom project itself has the same url structure as the child projects.
> This is for all urls that can be inherited, e.g. distribution site, deployment url, etc.
> I would like to specify some complete url like
> protocol:/my.server.com/some/path/to/the/${groupId}/${artifactId}
> For example, with the actual implementation I get either the parent pom site deployed to the groupId directory, or I get the child projects deployed to the grouId/artifactId/artifactId directory.
> At the moment I have add the urls on every project, although they always have the same pattern.

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