You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Fredrik Vraalsen (JIRA)" <ji...@codehaus.org> on 2005/08/15 08:38:57 UTC

[jira] Created: (MPRELEASE-11) does not handle non-jar dependencies

does not handle non-jar dependencies
------------------------------------

         Key: MPRELEASE-11
         URL: http://jira.codehaus.org/browse/MPRELEASE-11
     Project: maven-release-plugin
        Type: Bug
 Environment: Maven 1.0.2, maven-release-plugin 1.4.1
 Reporter: Fredrik Vraalsen
 Assigned to: Brett Porter 
 Attachments: maven-release-plugin_non-jar-dependencies.patch

The attached patch makes the release plugin handle dependencies which are not of type jar.

Cheers,
Fredrik

-- 
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: (MPRELEASE-11) does not handle non-jar dependencies

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

    Resolution: Fixed

> does not handle non-jar dependencies
> ------------------------------------
>
>          Key: MPRELEASE-11
>          URL: http://jira.codehaus.org/browse/MPRELEASE-11
>      Project: maven-release-plugin
>         Type: Bug
>  Environment: Maven 1.0.2, maven-release-plugin 1.4.1
>     Reporter: Fredrik Vraalsen
>     Assignee: Brett Porter
>  Attachments: maven-release-plugin_non-jar-dependencies.patch
>
>
> The attached patch makes the release plugin handle dependencies which are not of type jar.
> Cheers,
> Fredrik

-- 
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] Reopened: (MPRELEASE-11) does not handle non-jar dependencies

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


> does not handle non-jar dependencies
> ------------------------------------
>
>          Key: MPRELEASE-11
>          URL: http://jira.codehaus.org/browse/MPRELEASE-11
>      Project: maven-release-plugin
>         Type: Bug
>  Environment: Maven 1.0.2, maven-release-plugin 1.4.1
>     Reporter: Fredrik Vraalsen
>     Assignee: Brett Porter
>  Attachments: maven-release-plugin_non-jar-dependencies.patch
>
>
> The attached patch makes the release plugin handle dependencies which are not of type jar.
> Cheers,
> Fredrik

-- 
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: (MPRELEASE-11) does not handle non-jar dependencies

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

    Resolution: Won't Fix

the release plugin will not have any further releases in its current form. it will be replaced by the scm plugin's release functionality.
IF these do not cover the required functionality, please elaborate on what you are using it for.

> does not handle non-jar dependencies
> ------------------------------------
>
>          Key: MPRELEASE-11
>          URL: http://jira.codehaus.org/browse/MPRELEASE-11
>      Project: maven-release-plugin
>         Type: Bug
>  Environment: Maven 1.0.2, maven-release-plugin 1.4.1
>     Reporter: Fredrik Vraalsen
>     Assignee: Brett Porter
>  Attachments: maven-release-plugin_non-jar-dependencies.patch
>
>
> The attached patch makes the release plugin handle dependencies which are not of type jar.
> Cheers,
> Fredrik

-- 
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: (MPRELEASE-11) does not handle non-jar dependencies

Posted by "Fredrik Vraalsen (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MPRELEASE-11?page=comments#action_45030 ] 

Fredrik Vraalsen commented on MPRELEASE-11:
-------------------------------------------

I'm using the release:setup-distribution-bin goal to copy dependencies into my target directory before generating an IzPack installer using the izpack plugin. However, the release plugin does not work for copying in non-jar dependencies, e.g. EJB and EAR artifacts.  Do you have any suggestions as to which other plugin/goal to use instead in order to copy in the dependencies before packaging? I cannot find anything similar in the scm plugin.

Here is the relevant part of my project.properties:

maven.release.distribution.categories=\
	common-endorsed:common-pack/lib/endorsed,\
	client:client-pack/client,\
	server-deploy:server-pack/server/default/deploy,\
	server-lib:server-pack/server/default/lib

and my project.xml contains dependencies such as

		<dependency>
			<groupId>jboss</groupId>
			<artifactId>jbossall-client</artifactId>
			<version>4.0.2</version>
			<properties>
				<category>client</category>
			</properties>
		</dependency>


Cheers,

Fredrik


> does not handle non-jar dependencies
> ------------------------------------
>
>          Key: MPRELEASE-11
>          URL: http://jira.codehaus.org/browse/MPRELEASE-11
>      Project: maven-release-plugin
>         Type: Bug
>  Environment: Maven 1.0.2, maven-release-plugin 1.4.1
>     Reporter: Fredrik Vraalsen
>     Assignee: Brett Porter
>  Attachments: maven-release-plugin_non-jar-dependencies.patch
>
>
> The attached patch makes the release plugin handle dependencies which are not of type jar.
> Cheers,
> Fredrik

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