Re: Multiple Project Builds

2006-03-25 Thread Steven Coco

Hi.

I have done multi-module POMs without any problem (Maven 2).

The main POM excerpt you posted looks to be fine.  In the child POMs, be 
sure they refer to the parent:



   ...
   ...
   ...


And be sure any dependency between one module and another is properly 
declared.


Then if you are sure of the above, I would not know further.  I have 
done projects that all bundle into individual jars.  There may be 
another issue if one module is being jar'd and then that needs to be 
assembled into the war.  In theory, that all should work, but I don't 
actually have a specific example POM to show you.


Good luck.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Next Problem: javax.transaction:jta

2006-03-25 Thread Paul Li
Hi Peter,

Yes there is a whole list of javax jars from sun that Maven is not
allowed to include on ibiblo due to licensing restrictions from sun.

So yes you need the pom downloaded from ibiblo, and you need to
download those jars mannually from sun site (dont forget to click on
'I agree') ;-) Then install them in your repository locally, then you
are good to go!

hth,

pauli

On 3/25/06, Peter L. Berghold <[EMAIL PROTECTED]> wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
>
>
> This seems to exist on the repositories only as a POM..
>
> I think remember reading on this list that is a method of using these
> poms to create/download the dependency you need for a project.
>
> Am I all wet here?  Or just how does it work?
>
>
> - --
> 
> Peter L. Berghold [EMAIL PROTECTED]
> "Those who fail to learn from history are condemned to repeat it."
> AIM: redcowdawgYahoo IM: blue_cowdawg  ICQ: 11455958
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.2.6 (GNU/Linux)
> Comment: Using GnuPG with Red Hat - http://enigmail.mozdev.org
>
> iD8DBQFEJNbOUM9/01RIhaARAvb1AJ9eWFuk97n/6k03OlHlOzxuS9NduQCdGEcf
> 3DX7NrkQ7VB/j0lIhMajUVY=
> =vRUU
> -END PGP SIGNATURE-
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Multiple Project Builds

2006-03-25 Thread Paul Li
thanks Dan,

I assume that build-helper is what we need here :-) I will try to set
it up and reply to how i went as well.

cheers,

pauli

On 3/26/06, TJ Greenier <[EMAIL PROTECTED]> wrote:
> Dan,
>
> Thank you for the links.  I think those example will help me out.  I plan to
> work on that later today or tomorrow.  If I get this working I will reply
> with how I set it up.
>
> Thanks,
> TJ
>
> On 3/24/06, dan tran <[EMAIL PROTECTED]> wrote:
> >
> > did you take a look at the project source for http://mojo.codehaus.org or
> > maven2  http://svn.apache.org/repos/asf/maven?
> >
> >
> >
> > -D
> >
> >
> > On 3/24/06, Paul Li <[EMAIL PROTECTED]> wrote:
> > >
> > > Hi TJ,
> > > I have the same problem. if anyone know of an example pom.xml that
> > > would be great!
> > >
> > >
> > > I remember reading from the maven documentations, that you have to set
> > > the project up in a particular directory structure to get this to
> > > work. Which is no good for me :-(
> > >
> > > I recall the directory you need is:
> > >
> > > /ParentProjDirectory
> > > pom.xml (put your modules etc)
> > > /ParentProjDirectory/Child#1ProjDirectory
> > > pom.xml (put a reference to the parent project)
> > > /ParentProjDirectory/Child#2ProjDirectory
> > > pom.xml (put a reference to parent project)
> > > /ParentProjDirectory/Child#3ProjDirectory
> > > pom.xml (put a reference to the parent project)
> > >
> > >
> > > What I want is the directory structure you outlined below, cos this is
> > > a lot better from a development perspective, as ppl could just check
> > > out the bit they are working on, not everything. But so far I haven't
> > > had a lot mileage on this one.
> > >
> > > Can anyone else shed some light here?
> > >
> > >
> > > cheers,
> > >
> > >
> > > paul
> > >
> > > On 3/25/06, TJ Greenier <[EMAIL PROTECTED]> wrote:
> > > > Hi all,
> > > >
> > > > I used Maven in the past and I am trying to get up to speed with Maven
> > > 2.0.
> > > > I have a question regarding multiple projects and was hoping that
> > > someone
> > > > can point me in the right directions, as I am getting a little
> > confused.
> > > >
> > > > My intentions:
> > > > I have a project that can be separated as client, server and common
> > code
> > > > bases.
> > > > I want to be able to check out each one independently to build and
> > unit
> > > > test.
> > > > I also want to be able to build the project as a whole in which I
> > would
> > > get
> > > > two resulting archive files (say client.jar and server.war)
> > > >
> > > > Currently my project is structured as follows:
> > > > MyProject
> > > > - ClientProject
> > > > - packages
> > > > - pom.xml (jar type)
> > > >  - ServerProject
> > > > - packages
> > > > - pom.xml (war type)
> > > >  - CommonProject
> > > > - packages
> > > > - pom.xml (jar type, this project is used by both client and server)
> > > >  - pom.xml
> > > >
> > > > The MyProject pom.xml content:
> > > > http://maven.apache.org/POM/4.0.0"; xmlns:xsi="
> > > > http://www.w3.org/2001/XMLSchema-instance";
> > > >   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> > > > http://maven.apache.org/maven-v4_0_0.xsd";>
> > > >   4.0.0
> > > >   com.company.project
> > > >   MyProject
> > > >   1.0-SNAPSHOT
> > > >   pom
> > > >   MyProject
> > > >   
> > > > ClientProject
> > > > ServerProject
> > > > CommonProject
> > > >   
> > > >   
> > > > 
> > > >   junit
> > > >   junit
> > > >   3.8.1
> > > >   test
> > > > 
> > > >   
> > > > 
> > > >
> > > > My Issues:
> > > > I can currently build each project separately, but I am struggling
> > with
> > > > building the over all project and getting two archives (jar and war).
> > > > I am open to suggestions if I am going about this the wrong way, but I
> > > was
> > > > hoping that someone could point me to an example or link that would
> > help
> > > me
> > > > work through this.  My thoughts were that the pom packaging would just
> > > > execute the packaging for each subproject, thus getting me the
> > > client.jarand
> > > > server.war files that I need.
> > > >
> > > > My project is currently using Ant and has duplicated a lot of what
> > Maven
> > > can
> > > > do in a nonstandard manner.  I am hoping to use Maven 2.0 to cleanup
> > our
> > > > build process and remove some of our issues with our current build
> > > process.
> > > >
> > > > Many thanks in advance.
> > > >
> > > > T.J. Greenier
> > > >
> > > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Looking for a better way to copy properties files from an external module?

2006-03-25 Thread Paul Li
hi,

I am not sure if I undtand you correctly, so please excuse me if i
gave you the wrong approach here...

maybe you could add an ant task in your web pom.xml that copies these
files to the web's resources directory.

And remove the resources stuff from below. Then when you run mvn
eclipse:eclipse it wont pick these up as a resource any more ... and
hence wont add the entry to .classpath

This is prob a bit of a hack ;-) Maybe there is way to tell the mvn
eclipse plugin to igore certain directories, which is probably the
'clean' way to do things.

hth
pauli

On 3/24/06, Lucie Chan <[EMAIL PROTECTED]> wrote:
> Looking for a better solution
>
> My web application relies on a database laye (which is packaged and
> installed as a *.jar file and made available to the web layer at runtime).
> In order to copy some of the property files (such as jdbc.properties,
> hibernate.cfg.xml, etc) from database layer's resource directory to WEB-INF/
> classes directory, I specified the the following in the web layer's pom.xml
> (see below).
>
> The only trouble is that when I run "mvn eclipse:eclipse", I notice the path
> I specified in the 
> tag is added to the .classpath which is not what I want (I only want the
> directory for its property files).  For now, I have to go into .classpath to
> delete the entry manually.  Just wondering if there's a way to exclude this
> from the ?
>
>
> 
> treebase-web
> install
> 
> 
> 
> ${basedir}/../database-object/src/main/resources
> 
>*.*
> 
> 
> 
>   
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: newbie question: timestamp on target build file

2006-03-25 Thread Andreas Guther
In Maven 1 is a jar:snapshot goals or something similar that builds a
jar with a timestamp number similar to what you had in your email.

Andreas



-Original Message-
From: Hong wu [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 24, 2006 2:08 PM
To: users@maven.apache.org
Subject: newbie question: timestamp on target build file

Hi,

I'd like to know how to put a timestamp in my target build file, such as
javabuild-20060324.jar

I seem could not find it anywhere in the documentation or Google.
Thanks for the help!

Maven rocks!

H.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Making goals viewable in Outline of Eclipse IDE

2006-03-25 Thread Andreas Guther
Using the maven.xml file in Maven 1 always allowed me to see *all* goals
in Eclipse using the MevenIde.  It might be that the maven.xml file you
are using is not correct.  As far as I remember, it also worked with an
"empty" maven.xml file, i.e. one that did not define any goals (but it
needed the basic xml definition.

I would try using the maven.xml file from the project that allowed you
to see the goals and just remove all goals inside the maven.xml file
that are irrelevant for your project.

Andreas

-Original Message-
From: raja bangaru [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 24, 2006 10:32 PM
To: Maven Users List
Subject: Re: Making goals viewable in Outline of Eclipse IDE

I've got a sample project downloaded from internet and when i double
click
the maven.xml file it is showing all goals

But i've got my own project prepared using maven...but when i double
click
maven.xml it is not showing all goals

always going to maven and specifying goals is a bit paining

any help pls


On 3/25/06, Paul Li <[EMAIL PROTECTED]> wrote:
>
> I think there is something called mavenide that helps to incorporate
> eclipse ide with maven. However from memory this only works with maven
> 1 not 2.
>
> hth
> paul
>
> On 3/25/06, raja bangaru <[EMAIL PROTECTED]> wrote:
> > Hi guys,
> >
> > This question is for people who is using Eclipse IDE for maven
> >
> > How can i watch all goals when i double click maven.xml? in Outline
of
> > Eclipse IDE?
> >
> > It is saying that outline is unavailable
> > How to make it available
> >
> > ANy help pls
> >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Clover Plugin

2006-03-25 Thread Andreas Guther
I think it would be better to have the location defined in the user's 
settings.xml file.  That would allow having a build machine with its own 
license file etc.  The absolute path is seldom a sufficient solution.

Andreas


-Original Message-
From: Wayne Fay [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 24, 2006 2:03 PM
To: Maven Users List
Subject: Re: Clover Plugin

You could perhaps try an absolute pathname to the file ie
/home/afreeman/clover/clover.license or c:/maven/clover/clover.license
etc but I'm not certain that this would work...

Wayne


On 3/24/06, Aaron Freeman <[EMAIL PROTECTED]> wrote:
> That worked. I guess I was putting the license in the wrong place.
> However, if you do it this way then you would have to put the
> clover.license file in every project that you want a clover report on.
> Is this the only way to do it. I was looking for some way to put it in
> one location so all POM's could reference it, but not have to include
> it in the project.
>
>
>
> On 3/24/06, Wayne Fay <[EMAIL PROTECTED]> wrote:
> > I believe this is "correct"...
> >
> > 
> >  org.apache.maven.plugins
> >  maven-clover-plugin
> >  
> >   clover.license 
> >  
> > 
> >
> > Wayne
> >
> >
> > On 3/24/06, Boris Lenzinger <[EMAIL PROTECTED]> wrote:
> > > Have a look here:
> > > http://mavenbook.xwiki.com/xwiki/bin/view/Clover%20Plugin%20v1/9%20released
> > > and search license in the page. They point out a property
> > > maven.clover.license.path
> > > (this is from 2005 so I hope it is not out of date)
> > >
> > > I don't know if it is working since I do not use Clover but it can be a
> > > track.
> > >
> > > Aaron Freeman a écrit :
> > > > I was looking into using Clover at my company, so I got an evaluation
> > > > license from there web site. I wanted to use it with the Maven Clover
> > > > plugin, but I can't figure out how to specify the license file. How is
> > > > this supposed to be done? I couldn't really find much on the net about
> > > > it.
> > > >
> > > > -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Multiple Project Builds

2006-03-25 Thread TJ Greenier
Dan,

Thank you for the links.  I think those example will help me out.  I plan to
work on that later today or tomorrow.  If I get this working I will reply
with how I set it up.

Thanks,
TJ

On 3/24/06, dan tran <[EMAIL PROTECTED]> wrote:
>
> did you take a look at the project source for http://mojo.codehaus.org or
> maven2  http://svn.apache.org/repos/asf/maven?
>
>
>
> -D
>
>
> On 3/24/06, Paul Li <[EMAIL PROTECTED]> wrote:
> >
> > Hi TJ,
> > I have the same problem. if anyone know of an example pom.xml that
> > would be great!
> >
> >
> > I remember reading from the maven documentations, that you have to set
> > the project up in a particular directory structure to get this to
> > work. Which is no good for me :-(
> >
> > I recall the directory you need is:
> >
> > /ParentProjDirectory
> > pom.xml (put your modules etc)
> > /ParentProjDirectory/Child#1ProjDirectory
> > pom.xml (put a reference to the parent project)
> > /ParentProjDirectory/Child#2ProjDirectory
> > pom.xml (put a reference to parent project)
> > /ParentProjDirectory/Child#3ProjDirectory
> > pom.xml (put a reference to the parent project)
> >
> >
> > What I want is the directory structure you outlined below, cos this is
> > a lot better from a development perspective, as ppl could just check
> > out the bit they are working on, not everything. But so far I haven't
> > had a lot mileage on this one.
> >
> > Can anyone else shed some light here?
> >
> >
> > cheers,
> >
> >
> > paul
> >
> > On 3/25/06, TJ Greenier <[EMAIL PROTECTED]> wrote:
> > > Hi all,
> > >
> > > I used Maven in the past and I am trying to get up to speed with Maven
> > 2.0.
> > > I have a question regarding multiple projects and was hoping that
> > someone
> > > can point me in the right directions, as I am getting a little
> confused.
> > >
> > > My intentions:
> > > I have a project that can be separated as client, server and common
> code
> > > bases.
> > > I want to be able to check out each one independently to build and
> unit
> > > test.
> > > I also want to be able to build the project as a whole in which I
> would
> > get
> > > two resulting archive files (say client.jar and server.war)
> > >
> > > Currently my project is structured as follows:
> > > MyProject
> > > - ClientProject
> > > - packages
> > > - pom.xml (jar type)
> > >  - ServerProject
> > > - packages
> > > - pom.xml (war type)
> > >  - CommonProject
> > > - packages
> > > - pom.xml (jar type, this project is used by both client and server)
> > >  - pom.xml
> > >
> > > The MyProject pom.xml content:
> > > http://maven.apache.org/POM/4.0.0"; xmlns:xsi="
> > > http://www.w3.org/2001/XMLSchema-instance";
> > >   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> > > http://maven.apache.org/maven-v4_0_0.xsd";>
> > >   4.0.0
> > >   com.company.project
> > >   MyProject
> > >   1.0-SNAPSHOT
> > >   pom
> > >   MyProject
> > >   
> > > ClientProject
> > > ServerProject
> > > CommonProject
> > >   
> > >   
> > > 
> > >   junit
> > >   junit
> > >   3.8.1
> > >   test
> > > 
> > >   
> > > 
> > >
> > > My Issues:
> > > I can currently build each project separately, but I am struggling
> with
> > > building the over all project and getting two archives (jar and war).
> > > I am open to suggestions if I am going about this the wrong way, but I
> > was
> > > hoping that someone could point me to an example or link that would
> help
> > me
> > > work through this.  My thoughts were that the pom packaging would just
> > > execute the packaging for each subproject, thus getting me the
> > client.jarand
> > > server.war files that I need.
> > >
> > > My project is currently using Ant and has duplicated a lot of what
> Maven
> > can
> > > do in a nonstandard manner.  I am hoping to use Maven 2.0 to cleanup
> our
> > > build process and remove some of our issues with our current build
> > process.
> > >
> > > Many thanks in advance.
> > >
> > > T.J. Greenier
> > >
> > >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>


mark dependencies as eclipse project

2006-03-25 Thread Duncan Krebs
Hi, 
  In maven 1 I remember there was a property you could include in a dependency 
in the pom that would tell the eclipse plugin to include the dependent artifact 
as an eclipse project. It was something like 
true. 
   
  I'm now in the maven 2 environment and was wondering if there is a way to 
achieve this. Does anyone happen to know? Thanks for any help - Duncan 


-
Blab-away for as little as 1¢/min. Make  PC-to-Phone Calls using Yahoo! 
Messenger with Voice.

RE: install:install-file

2006-03-25 Thread Lars Mogren
Hi,
I am using Maven 2.

-Original Message-
From: Patrick Kimber [mailto:[EMAIL PROTECTED] 
Sent: den 24 mars 2006 16:41
To: Maven Users List
Subject: Re: install:install-file

Are you using Maven 1 or 2?

On 24/03/06, Lars Mogren <[EMAIL PROTECTED]> wrote:
> Hi,
> Maybe this is a newbee question but can I use install:install-file to add
sources to 3rd-party jars?
> Regards
> Lars
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Clover Plugin

2006-03-25 Thread Vincent Massol
Hi Aaron,

I'm fixing the doc on this. You need to specify a licenseFile element.
Here's what I'm adding to the doc:

"
Specifying a custom license file

  The Clover plugin provides a default evaulation license. However if your
project is a commercial project
  you need to purchase your own license to use Clover. To use your license
specify it using a
  <<>> configuration element. For example if you wanted to
automatically execute the
  <<>> goal when you type <<>> and if you wanted to use
your license located in
  <<<${basedir}/src/test/clover/myclover.license>>> you would use:

+
  

  
org.apache.maven.plugins
maven-clover-plugin

 
${basedir}/src/test/clover/myclover.license


  

  50%


  check

  

  

  
+-

  Important note: The <<>> element needs to be defined in the
global <<>> element
  and not in the <<>> element under the <<>> tag.
"

Hope it helps,
-Vincent

> -Original Message-
> From: Aaron Freeman [mailto:[EMAIL PROTECTED]
> Sent: vendredi 24 mars 2006 20:32
> To: Maven
> Subject: Clover Plugin
> 
> I was looking into using Clover at my company, so I got an evaluation
> license from there web site. I wanted to use it with the Maven Clover
> plugin, but I can't figure out how to specify the license file. How is
> this supposed to be done? I couldn't really find much on the net about
> it.
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Clover Plugin

2006-03-25 Thread Vincent Massol


> -Original Message-
> From: Aaron Freeman [mailto:[EMAIL PROTECTED]
> Sent: vendredi 24 mars 2006 21:34
> To: Maven Users List
> Subject: Re: Clover Plugin
> 
> That worked. I guess I was putting the license in the wrong place.
> However, if you do it this way then you would have to put the
> clover.license file in every project that you want a clover report on.
> Is this the only way to do it. I was looking for some way to put it in
> one location so all POM's could reference it, but not have to include
> it in the project.

Check http://jira.codehaus.org/browse/MCLOVER-23.

Thanks
-Vincent

> On 3/24/06, Wayne Fay <[EMAIL PROTECTED]> wrote:
> > I believe this is "correct"...
> >
> > 
> >  org.apache.maven.plugins
> >  maven-clover-plugin
> >  
> >   clover.license 
> >  
> > 
> >
> > Wayne
> >
> >
> > On 3/24/06, Boris Lenzinger <[EMAIL PROTECTED]> wrote:
> > > Have a look here:
> > >
> http://mavenbook.xwiki.com/xwiki/bin/view/Clover%20Plugin%20v1/9%20release
> d
> > > and search license in the page. They point out a property
> > > maven.clover.license.path
> > > (this is from 2005 so I hope it is not out of date)
> > >
> > > I don't know if it is working since I do not use Clover but it can be
> a
> > > track.
> > >
> > > Aaron Freeman a écrit :
> > > > I was looking into using Clover at my company, so I got an
> evaluation
> > > > license from there web site. I wanted to use it with the Maven
> Clover
> > > > plugin, but I can't figure out how to specify the license file. How
> is
> > > > this supposed to be done? I couldn't really find much on the net
> about
> > > > it.
> > > >
> > > > 
> -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Next Problem: javax.transaction:jta

2006-03-25 Thread Stephen Duncan
http://maven.apache.org/guides/mini/guide-coping-with-sun-jars.html

-Stephen

On 3/25/06, Peter L. Berghold <[EMAIL PROTECTED]> wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
>
>
> This seems to exist on the repositories only as a POM..
>
> I think remember reading on this list that is a method of using these
> poms to create/download the dependency you need for a project.
>
> Am I all wet here?  Or just how does it work?
>
>
> - --
> 
> Peter L. Berghold [EMAIL PROTECTED]
> "Those who fail to learn from history are condemned to repeat it."
> AIM: redcowdawgYahoo IM: blue_cowdawg  ICQ: 11455958
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.2.6 (GNU/Linux)
> Comment: Using GnuPG with Red Hat - http://enigmail.mozdev.org
>
> iD8DBQFEJNbOUM9/01RIhaARAvb1AJ9eWFuk97n/6k03OlHlOzxuS9NduQCdGEcf
> 3DX7NrkQ7VB/j0lIhMajUVY=
> =vRUU
> -END PGP SIGNATURE-
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
Stephen Duncan Jr
www.stephenduncanjr.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: IDEA plugin module dependencies

2006-03-25 Thread Geoffrey De Smet

The latest snapshot actually does that :) and a lot more.
The latest release is very bad compared to the latest snapshot.

I hope they release the new snapshot soon (after resources should be 
configured as source issue is fixed though).


With kind regards,
Geoffrey De Smet


Gareth Western wrote:

Hi,

I have a mult-module project for which I'd like to generate an IntelliJ
project using the IDEA plugin.

In my project, some of the modules are dependent on the other modules. Is it
possible for the IDEA plugin to mark these dependencies in the Project
Settings -> Dependencies window, rather than just adding the resulting
artifacts into the "Module Libraries" settings?

Thanks,

Gareth




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]