You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Brett Porter (JIRA)" <ji...@codehaus.org> on 2005/09/01 03:06:02 UTC

[jira] Created: (MNG-816) need to be able to attach new artifacts via profile

need to be able to attach new artifacts via profile
---------------------------------------------------

         Key: MNG-816
         URL: http://jira.codehaus.org/browse/MNG-816
     Project: Maven 2
        Type: Bug
 Reporter: Brett Porter
     Fix For: 2.0-beta-2


eg, see maven-model. We can change finalName, but that doesn't affect the installed/deployed artifact.

Basically, a profile should be able to generate an additional artifact with a classifier that is attached to the original.

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


[jira] Commented: (MNG-816) need to be able to attach new artifacts via profile

Posted by "John Casey (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-816?page=comments#action_47374 ] 

John Casey commented on MNG-816:
--------------------------------

wouldn't any new attached artifact be generated by a plugin? So, including that plugin via a profile should do what you want, shouldn't it?

> need to be able to attach new artifacts via profile
> ---------------------------------------------------
>
>          Key: MNG-816
>          URL: http://jira.codehaus.org/browse/MNG-816
>      Project: Maven 2
>         Type: Bug
>   Components: maven-artifact
>     Reporter: Brett Porter
>      Fix For: 2.0-beta-3

>
>
> eg, see maven-model. We can change finalName, but that doesn't affect the installed/deployed artifact.
> Basically, a profile should be able to generate an additional artifact with a classifier that is attached to the original.

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


[jira] Commented: (MNG-816) need to be able to attach new artifacts via profile

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-816?page=comments#action_47745 ] 

Brett Porter commented on MNG-816:
----------------------------------

actually, configuring the plugin might be the best solution after all

<profile>
  ...
  <plugin>
    <artifactId>maven-jar-plugin</artifactId>
    <executions>
      <execution>
        <phase>package</phase>
        <configuration>
          <attached>true</attached>
          <classifier>all</classifier>
        </configuration>
        <goals>
          <goal>jar</goal>
        </goals>
      <execution>
    </executions>
        

> need to be able to attach new artifacts via profile
> ---------------------------------------------------
>
>          Key: MNG-816
>          URL: http://jira.codehaus.org/browse/MNG-816
>      Project: Maven 2
>         Type: Bug
>   Components: maven-artifact
>     Reporter: Brett Porter
>      Fix For: 2.0-beta-3

>
>
> eg, see maven-model. We can change finalName, but that doesn't affect the installed/deployed artifact.
> Basically, a profile should be able to generate an additional artifact with a classifier that is attached to the original.

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


[jira] Updated: (MNG-816) need to be able to attach new artifacts via profile

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-816?page=all ]

Brett Porter updated MNG-816:
-----------------------------

    Component: maven-artifact

> need to be able to attach new artifacts via profile
> ---------------------------------------------------
>
>          Key: MNG-816
>          URL: http://jira.codehaus.org/browse/MNG-816
>      Project: Maven 2
>         Type: Bug
>   Components: maven-artifact
>     Reporter: Brett Porter
>      Fix For: 2.0-beta-2

>
>
> eg, see maven-model. We can change finalName, but that doesn't affect the installed/deployed artifact.
> Basically, a profile should be able to generate an additional artifact with a classifier that is attached to the original.

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


[jira] Closed: (MNG-816) need to be able to attach new artifacts via profile

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-816?page=all ]
     
Brett Porter closed MNG-816:
----------------------------

     Assign To: Brett Porter
    Resolution: Fixed

add capability to jar plugin, tested via all-models profile on maven-model

> need to be able to attach new artifacts via profile
> ---------------------------------------------------
>
>          Key: MNG-816
>          URL: http://jira.codehaus.org/browse/MNG-816
>      Project: Maven 2
>         Type: Bug
>   Components: maven-artifact
>     Reporter: Brett Porter
>     Assignee: Brett Porter
>      Fix For: 2.0-beta-3

>
> Original Estimate: 45 minutes
>        Time Spent: 15 minutes
>         Remaining: 0 minutes
>
> eg, see maven-model. We can change finalName, but that doesn't affect the installed/deployed artifact.
> Basically, a profile should be able to generate an additional artifact with a classifier that is attached to the original.

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


[jira] Commented: (MNG-816) need to be able to attach new artifacts via profile

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-816?page=comments#action_47407 ] 

Brett Porter commented on MNG-816:
----------------------------------

the plugin doing the packaging is not the part of the profile. See the example I gave.

> need to be able to attach new artifacts via profile
> ---------------------------------------------------
>
>          Key: MNG-816
>          URL: http://jira.codehaus.org/browse/MNG-816
>      Project: Maven 2
>         Type: Bug
>   Components: maven-artifact
>     Reporter: Brett Porter
>      Fix For: 2.0-beta-3

>
>
> eg, see maven-model. We can change finalName, but that doesn't affect the installed/deployed artifact.
> Basically, a profile should be able to generate an additional artifact with a classifier that is attached to the original.

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


[jira] Updated: (MNG-816) need to be able to attach new artifacts via profile

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-816?page=all ]

Brett Porter updated MNG-816:
-----------------------------

    Remaining Estimate: 45 minutes
     Original Estimate: 2700

> need to be able to attach new artifacts via profile
> ---------------------------------------------------
>
>          Key: MNG-816
>          URL: http://jira.codehaus.org/browse/MNG-816
>      Project: Maven 2
>         Type: Bug
>   Components: maven-artifact
>     Reporter: Brett Porter
>      Fix For: 2.0-beta-3

>
> Original Estimate: 45 minutes
>         Remaining: 45 minutes
>
> eg, see maven-model. We can change finalName, but that doesn't affect the installed/deployed artifact.
> Basically, a profile should be able to generate an additional artifact with a classifier that is attached to the original.

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