Re: Clover 2 plug-in on Maven 2.0.9

2008-04-26 Thread Ryan H.
is with clover trying to change it? -Original Message- From: Ryan H. [mailto:[EMAIL PROTECTED] Sent: Friday, April 25, 2008 4:31 PM To: Maven Users List Subject: Clover 2 plug-in on Maven 2.0.9 Folks, I just found that Maven 2.0.9 does not work with the existing Clover 2 maven 2

Clover 2 plug-in on Maven 2.0.9

2008-04-25 Thread Ryan H.
Folks, I just found that Maven 2.0.9 does not work with the existing Clover 2 maven 2 plug-in (group ID: com.atlassian.maven.plugins) if you are using some of maven 2 properties specifying project directories such as ${project.build.directory} etc. You can use maven's antrun plug-in to echo out

A problem with nested import on Maven 2.0.9

2008-04-16 Thread Ryan H.
Has anyone tried the nested import on Maven 2.0.9? When I tried to use import scope to import one POM which in turns to import another POM, maven 2.0.9 seems to only can locate the 1st imported POM but could not locate the child import because it only looks it up in the maven central repository

when will maven 2.0.9 be officially released?

2008-02-29 Thread Ryan H.
Does anyone know when maven 2.0.9 will be offcially released? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

invoke plugin specifically

2008-02-29 Thread Ryan H.
Hello, It seems to me that maven does not go by the configuration for a plug-in in my pom.xml file when I invoke the plugin explicitly. For example, I configured the dependency plug-in in my pom.xml with the destination of dependency jars. However, when I invoked mvn

Re: when will maven 2.0.9 be officially released?

2008-02-29 Thread Ryan H.
Benedict [EMAIL PROTECTED] wrote: 2.0.9 is a very exciting release, imo. Perhaps on par with 2.0.4 On Fri, Feb 29, 2008 at 10:46 AM, Ryan H. [EMAIL PROTECTED] wrote: Does anyone know when maven 2.0.9 will be offcially released

SNAPSHOT

2008-02-17 Thread Ryan H.
Hello, If my maven2 repository persists each artifact with time stamp as part of their filename, is SNAPSHOT version still going to work? I was thinking that maven should try to get the latest version for a given artifact when being queried with SNAPSHOT even in the above circustance.

Re: The list of maven plug-ins that are used by maven during the build

2008-02-14 Thread Ryan H.
://cvs.peopleware.be/training/maven/maven2/buildLifecyclePhases.html -Original Message- From: Ryan H. [mailto:[EMAIL PROTECTED] Sent: Thu 2/14/2008 00:58 To: Maven Users List Subject: The list of maven plug-ins that are used by maven during the build Hello Folks, A quick question

Why does maven2 not provide iteration or foreach language feature?

2008-02-14 Thread Ryan H.
Why does maven2 not provide iteration or foreach language feature?

Re: Why does maven2 not provide iteration or foreach language feature?

2008-02-14 Thread Ryan H.
. Wayne On Thu, Feb 14, 2008 at 6:41 PM, Ryan H. [EMAIL PROTECTED] wrote: Why does maven2 not provide iteration or foreach language feature? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Why does maven2 not provide iteration or foreach language feature?

2008-02-14 Thread Ryan H.
On Thu, Feb 14, 2008 at 6:41 PM, Ryan H. [EMAIL PROTECTED] wrote: Why does maven2 not provide iteration or foreach language feature? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

The list of maven plug-ins that are used by maven during the build

2008-02-13 Thread Ryan H.
Hello Folks, A quick question: is there a way to get the list of ALL maven plug-ins and their versions that are used by maven build life cycle? Maven uses tons of standard plug-ins explicitly and inexplicitly. Is there a way to get the whole list of it for a given build? Thanks Ryan

Re: Javadoc:jar error: Not executing Javadoc as the project is not a Java classpath-capable package

2008-02-12 Thread Ryan H.
the javadoc available for all the classes in this artifact. I understand that you want all the aggregated javadoc in one file, but to do that you cannot use standard maven procedures. Just package the aggregate javadoc yourself. HTH, Stefan Ryan H. wrote: Has anyone successfully used mvn

Re: Javadoc:jar error: Not executing Javadoc as the project is not a Java classpath-capable package

2008-02-11 Thread Ryan H.
classpath-capable package Am I missing something? Anyone has a clue? Thanks On 1/29/08, Ryan H. [EMAIL PROTECTED] wrote: I stripped out all modules and run it again. It still complains as shown below: D:\maven1\testmvn javadoc:jar -Daggregate=true [INFO] Scanning for projects... [INFO

Re: can maven run java program using dependence artifact information as classpath?

2008-02-01 Thread Ryan H.
java.class.path under maven2 won't give you the path for the project dependencies ... it's different from under maven1 On 1/30/08, Rex Huang [EMAIL PROTECTED] wrote: the application use System.getProperty(java.class.path) to get classpath. Rex On Jan 30, 2008 10:46 AM, Rex Huang [EMAIL

Using tasks attributes in AntRun plugin

2008-01-29 Thread Ryan H.
Hello, From what I experienced, the AntRun plug-in doesn't care about the attributes defined in tasks. I tried the example below, but it didn't work as described. When the property maven.test.skip is defined, the task is still executed.

OutOfMemoryError when running javadoc:javadoc

2008-01-29 Thread Ryan H.
Hello, I'm getting OutOfMeoryError when running javadoc:javadoc to generate an aggregated javadoc for multiple projects, even given with these options. Any solution to this problem? minmemory512/minmemory maxmemory1024/maxmemory Thanks Ryan

Javadoc:jar error: Not executing Javadoc as the project is not a Java classpath-capable package

2008-01-29 Thread Ryan H.
Hello, Anyone knows what this javadoc:jar complains about? I'm able to run javadoc:javadoc in aggregate mode (ie. generate only one report for all multiple projects). However, when I run javadoc:jar, it starts complaining it ... [INFO] [javadoc:jar] [INFO] Not executing Javadoc as the project is

Re: OutOfMemoryError when running javadoc:javadoc

2008-01-29 Thread Ryan H.
2008/1/29, Ryan H. [EMAIL PROTECTED]: Hello, I'm getting OutOfMeoryError when running javadoc:javadoc to generate an aggregated javadoc for multiple projects, even given with these options. Any solution to this problem? minmemory512/minmemory maxmemory1024/maxmemory Thanks

Re: Javadoc:jar error: Not executing Javadoc as the project is not a Java classpath-capable package

2008-01-29 Thread Ryan H.
] On 1/29/08, Ryan H. [EMAIL PROTECTED] wrote: Hi Vincent, I invoke javadoc:jar from my top level POM whose package type is pom. All modules included are java projects and their packaging types are jar across the board ... On 1/29

Re: Javadoc:jar error: Not executing Javadoc as the project is not a Java classpath-capable package

2008-01-29 Thread Ryan H.
(or subprojects)? It seems it is not a java one. Cheers, Vincent 2008/1/29, Ryan H. [EMAIL PROTECTED]: Hello, Anyone knows what this javadoc:jar complains about? I'm able to run javadoc:javadoc in aggregate mode (ie. generate only one report for all multiple projects). However, when I run

Re: mvn package: Generated JAR and external dependencies

2008-01-29 Thread Ryan H.
configure the maven-jar-plugin to have additional directory be added to the classpath. check out addClasspath and classpathprefix in the jar doc On Jan 29, 2008 10:41 PM, crishantha [EMAIL PROTECTED] wrote: Hi Oliver, I have the same issue as donald mentioned. Hence, I tried the shade plugin

Re: JavaDoc aggregate-problems

2008-01-26 Thread Ryan H.
Actually, this problem was mentioned a couple of times before. I have the same headache as the generate-source phase is called again, which in my case caused the whole source generatred again! the defect is in javadoc plug-in's defects list on JIRA (

How to tell maven not to generate an empty jar if src directory is not existing?

2008-01-24 Thread Ryan H.
Hello, By default, maven still generates an empty jar if there is no src directory for the project. I have a test project which only has source under test directory, I want maven to compile all the test sources but don't want maven to generate such empty jar after normal build life cycle. Is

Is there a tool that can dowload and package the dependencies from Maven repository?

2008-01-23 Thread Ryan H.
Hello, I have a need to download some of dependencies off maven repository and then package all of them to a zip file for distribution because my customers don't use maven. Is there such off-shelf tool that can accomplish such need? Thanks Ryan