You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Dan Tran <da...@gmail.com> on 2007/02/28 12:27:46 UTC

[ANN] native2ascii-maven-plugin-1.0-alpha-1 released

 The Mojo team is pleased to announce the first alpha release of the
Native2Ascii Maven Plugin

The site is at: http://mojo.codehaus.org/native2ascii-maven-plugin

-Dan

Re: [ANN] native2ascii-maven-plugin-1.0-alpha-1 released

Posted by Dan Tran <da...@gmail.com>.
Can you supply one? ;-)

-D


On 2/28/07, Manos Batsis <ma...@geekologue.com> wrote:
>
> Dan Tran wrote:
> > The Mojo team is pleased to announce the first alpha release of the
> > Native2Ascii Maven Plugin
> >
> > The site is at: http://mojo.codehaus.org/native2ascii-maven-plugin
>
> Awesome, i was getting ready to antrun this, but the plugin worked like
> a charm. If you could provide an example in the docos that combines
> filtering it would be great ;-)
>
> Many thanks,
>
> Manos
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: [ANN] native2ascii-maven-plugin-1.0-alpha-1 released

Posted by Manos Batsis <ma...@geekologue.com>.
Dan Tran wrote:
> The Mojo team is pleased to announce the first alpha release of the
> Native2Ascii Maven Plugin
> 
> The site is at: http://mojo.codehaus.org/native2ascii-maven-plugin

Awesome, i was getting ready to antrun this, but the plugin worked like 
a charm. If you could provide an example in the docos that combines 
filtering it would be great ;-)

Many thanks,

Manos

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Missing dependencies in APING/lib when releasing on a master project

Posted by ol...@smals-mvm.be.
Hi all,

I have a tricky issue with maven-release-plugin (but it's perhaps due to 
another plugin).

Here is the project structure:
Master (packaging is pom)
* CORE (packaging is jar)
* EJB (packaging is ejb, depend on the CORE and on commons-collection)
* EAR (packaging is ear, depend on the EJB to include it in the enterprise 
archive)

When I execute the 'release:perform' goal on the EAR project, everything 
works fine, the content of the ear file generated is something like that:
APP-INF
* lib
*  * commons-collection
*  * core
META-INF
ejb.jar

The problem is : When I execute the 'release:perform' goal on the Master 
project (to make a release of the master and all the components together), 
the content of the EAR does not include the internal dependency to the 
core project. So the content of the EAR is
APP-INF
* lib
*  * commons-collection
META-INF
ejb.jar

In the debug log of Maven, I can clearly see that maven does not try to 
resolve the dependency to the CORE ... why ??

Can someone help ?

Thanks
Oli