Re: What means @aggregator

2005-12-28 Thread Edwin Punzalan
If I'm not mistaken, it also gives you access to ${reactorProjects} where reactorProjects are the MavenProject references to the parent pom modules... Yes, @aggregator mojo can only be run on projects with packagingpom/packaging ^_^ dan tran wrote: to turn off multi module build, without

Re: [m2] clean plugin needs dependant plugins?

2005-12-15 Thread Edwin Punzalan
According to jira, this has been fixed in 2.0-alpha-3, if you're sure that its not working again, you can reopen http://jira.codehaus.org/browse/MNG-489 Chad Brandon wrote: Hi, Is there any reason why the clean plugin needs to have dependent plugins downloaded before it can do its

Re: [m2]Setting parameters in m2

2005-12-15 Thread Edwin Punzalan
Please see: http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html You want to set ouputDirectory in the compiler configuration. Am not sure though if -DoutputDirectory will work, so just configure the plugin in your project pom.xml. See

Re: [m2] Checkstyle reports

2005-12-14 Thread Edwin Punzalan
This should be better put in a jira. Please see if anything similar exists in jira, and if none, please create one. Thanks. Giles, Nick wrote: Following up to myself, some poking around suggests that at least in my version, it's the classloading that's to blame... The ClassLoader passed

Re: [m2] can't read url exception

2005-12-14 Thread Edwin Punzalan
Which project directory are you generating using the command ? I used on maven-site and I got it to generate the site successfully. Law Green-A20134 wrote: When I running mvn -U site:site to generate offline document for maven2, I got the following error: [INFO]

Re: [m2.0.1] PMD JDK 1.5

2005-12-14 Thread Edwin Punzalan
The latest PMD plugin uses version 3.0 of PMD. For feature requests, please file jira issues here: http://jira.codehaus.org/browse/MNG Wim Deblauwe wrote: hi, The latest code of the PMD plugin seems to be not release also (like the clover plugin - see other mail) to support JDK 1.5. I

Re: Example of a plugin with integration tests

2005-12-14 Thread Edwin Punzalan
AFAIK, each integration test is a separate project. For a plugin, you may want to create a project that will use your plugin and probably put it inside src/test/projects like maven-antrun-plugin, maven-eclipse-plugin, maven-javadoc-plugin and several others. These plugins can be found

Re: (Maven 2) mvn site not working

2005-12-14 Thread Edwin Punzalan
Did you update your version of the PMD plugin? It seems like the PMD plugin you're using does not implement canGenerateReport() method. Try checking out the latest pmd plugin from svn and install it to your local repository. See:

Re: [m2] Filtering resources and current time

2005-12-14 Thread Edwin Punzalan
AFAIK, there is no ${} expression with the current time as value. You may want to file a jira request for this feature though. The Maven 2 jira is here: http://jira.codehaus.org/browse/MNG Piotr Bzdyl wrote: Hello, I would like to have something like this in my pom.xml build

Re: [m2] Checkstyle severity attribute problem

2005-12-14 Thread Edwin Punzalan
Please file a jira issue for this so we can check it out. Thanks. ^_^ Giles, Nick wrote: When I provide the Checkstyle plugin with a customised config file, it causes it to crash unpleasantly when generating the report. It appears that this is due to calling the 'remove' method on

Re: [m2] ear plugin: jar does not get added to application xml (as java module)

2005-12-14 Thread Edwin Punzalan
The ejb plugin has configuration elements for the application.xml. Please see: http://maven.apache.org/plugins/maven-ear-plugin/howto.html Dário Luís Coneglian Oliveros wrote: Hi, I´ve been trying to create an EAR that contains a JAR, an EJB JAR (depends on JAR) and a WAR, however only

Re: [m2]release plugin with -N tag all modules (with cvs)

2005-12-14 Thread Edwin Punzalan
On my understanding with the release plugin, if you run it on the parent pom, all module references to the parent pom will be incremented too. And it is done by using the release:prepare So, if you have: parent (1.0-SNAPSHOT) - child01 - child02 The parent declarations for child01

Re: [m2] axistools:wsdl2java

2005-12-14 Thread Edwin Punzalan
This is what the axistools plugin author left as an example in svn: project ... build plugins plugin groupIdorg.codehaus.mojo/groupId artifactIdaxistools-maven-plugin/artifactId configuration urls

Re: [announce] maven-surefire-plugin 2.1.1

2005-12-14 Thread Edwin Punzalan
Great! A lot of people have been waiting for this... Thanks! ^_^ Jason van Zyl wrote: Hi, The maven-surefire-plugin version 2.1.1 has been released. This release focuses on forking support with a few bug fixes. Sorry for being so vague but because the plugins don't have their own

Re: [m2] Links from parent site to module site

2005-12-14 Thread Edwin Punzalan
Please see: http://maven.apache.org/guides/development/guide-testing-development-plugins.html Matthew Beermann wrote: I want to create a parent site that has links to the modules' sites. MNG-661, about this very issue, was recently fixed. I pulled a snapshot of the site plugin; now how

Re: Need of POM tags description

2005-12-14 Thread Edwin Punzalan
Just below the whole reference is a short description of the tags of the descriptor. I'm afraid that's all that we have for the project descriptor... feel free to ask if you want to know more about a certain tag or when you're not sure if you're understanding the description correctly.

Re: [M2] Error building Maven plugins from source

2005-12-14 Thread Edwin Punzalan
These plugins have been fixed by John Casey just recently, thanks. :D Richard Allen wrote: I had a problem building Maven 2 from the latest source because of some dependency references to 2.0.1-SNAPSHOT versions. To make the build work, I had to change these dependency version references

Re: compile time check

2005-12-06 Thread Edwin Punzalan
This is a classic example of how maven handles its artifacts. And the key to explain this behavior is the local repository. When you build your multiproject for the first time, what happens is maven will build jar1 first and update your local repository copy since jar2 depends on it. Then

Re: M2 - control order of inheritence

2005-12-06 Thread Edwin Punzalan
I think the order is 1) parent pom 2) project pom 3) settings 4) CLI parameters where the last overrides the previous. ^_^ Brian E. Fox wrote: I need to filter for all projects in this specific order: default.values user.default.values user.[app].values This is because when multiple

Re: [m2] where should sql, dtds, test data and generated docs go?

2005-12-01 Thread Edwin Punzalan
I'm not one of the generated of the mvn gurus here, but I'll give my two cents ^_^ Maven is not really strict on your directory structure and you can actually setup your directory tree as you want it to. But there are still advantages to having a common setup as this page explains:

Re: ActiveMQ POM?

2005-11-29 Thread Edwin Punzalan
Please file a jira issue on MEV in jira.codehaus.org so we can start working on it. If you can, please attach the correct/proper pom.xml for the artifact. Thanks. Tim Dysinger wrote: None of the ActiveMQ poms are correct in the m2 repositories. Has anyone noticed this? There are

Re: Repackaging dependent project artifacts

2005-11-28 Thread Edwin Punzalan
You may be in need of the assembly plugin to do your jarjar package. Here's the link: http://maven.apache.org/plugins/maven-assembly-plugin Ryan Smith wrote: I'm investigating switching our build process from Ant to Maven. I've run through the multi-project example, but I'm unclear as

Re: Repackaging dependent project artifacts

2005-11-28 Thread Edwin Punzalan
This will also help you: http://maven.apache.org/guides/mini/guide-assemblies.html Ryan Smith wrote: I'm investigating switching our build process from Ant to Maven. I've run through the multi-project example, but I'm unclear as to how I would embed one project's jar artifact within

Re: [m2] repository link

2005-11-28 Thread Edwin Punzalan
For now you can go to maven2 website - available plugins and see the ibiblio link there. ^_^ Adam Hardy wrote: I always have to look really hard to find the link to ibiblio for the repository. Is it possible that someone could put it in a more prominent place on the maven website? e.g.

Re: maven changelog plugin problems

2005-11-28 Thread Edwin Punzalan
The behavior of changelog when ran on a parent pom, is to have the plugin run on its modules. That is, each module will have their own reports. The empty reports are created so that the build will not fail... this need to be updated though. I'll look into your other concerns... Julian

Re: [m2] Properties files

2005-11-25 Thread Edwin Punzalan
Hi, A direct answer is no. There are no properties file in m2. And the right way to do it is to put properties that are project-related in pom - properties element and properties that are user-related in settings - properties element. Oscar Picasso wrote: Hi, In m1 we could use user

Re: [m2] Properties files

2005-11-25 Thread Edwin Punzalan
urlfile:\\${host}\odessa.m2repo/url and I want move properties hostslolen/host/properties to setting.xml Thanks Edwin Punzalan wrote: Hi, A direct answer is no. There are no properties file in m2. And the right way to do it is to put properties that are project-related in pom - properties

Re: lots of samples - how to structure maven tree??

2005-11-24 Thread Edwin Punzalan
Hi, Yes, you need to give each package a pom with the corresponding packaging. Mark Hansen wrote: I've got lots of sample that need to be packaged into lots of little WARs, EARs, etc. My file tree is set up like base src java samples chap1 sec1

Re: [m2] Missing properties in schemaexport

2005-11-24 Thread Edwin Punzalan
Which one are you using? hibernate-maven-plugin or hibernate3-maven-plugin ? Rubén Barroso wrote: Could you say me how to install configure it? I can see it in the plugin matrix, but I'm not able to find the steps to configure it. Thanks again. 2005/11/24, Edwin Punzalan [EMAIL

unable to download surefire plugin

2005-11-24 Thread Edwin Punzalan
In case any of you get an error similar to this: [INFO] Failed to resolve artifact. required artifacts missing: maven-surefire-plugin:maven-surefire-plugin:jar:1.4 maven-surefire-plugin:surefire-booter:jar:1.4 for the artifact:

Re: unable to download surefire plugin

2005-11-24 Thread Edwin Punzalan
:D I know... very handy. :D Jörg Schaible wrote: Edwin Punzalan wrote on Thursday, November 24, 2005 11:19 AM: In case any of you get an error similar to this: [INFO] Failed to resolve artifact. required artifacts missing: maven-surefire

Re: [m2] RAR plugin

2005-11-24 Thread Edwin Punzalan
Stephane. I was looking at the source of RAR plugin and found these: 1) if includeJar == true and jar file does not exist, the plugin does nothing. 2) the rar plugin does not call project.getArtifact().setFile( generatedRarFile ) at the end of the execution so that maven-install-plugin

Re: accessing environment variable in settings.xml or pom.xml

2005-11-23 Thread Edwin Punzalan
All properties available in System.getProperties() can be used using expressions. The expressions format is ${key}. Tom Joad wrote: Hello, I would like to know if it is possible to access unix or windows environment variables in settings.xml or pom.xml and how to do it. regards, Tom

Re: [m2] Missing properties in schemaexport

2005-11-23 Thread Edwin Punzalan
Have you tried using the hibernate plugin directly instead of calling ant-run to call hibernate ? Rubén Barroso wrote: Hello, I've been trying to use hibernate plugin in maven 2, but it doesn't work me. I've tried to achieve the same goal (schemaexport) with the following code:

Re: [m2] Status of forking in surefire plugin

2005-11-22 Thread Edwin Punzalan
The forking feature of surefire is due 2.0.1 accdg to the m2 roadmap David Jackman wrote: What's the latest status for forking support in the surefire plugin? A few of the projects I'm migrating to M2 use JNI to talk to Windows DLLs, and I need to fork the tests to make sure the test

Re: [M2] assembly plugin - best practices and concepts - questions OR how do i move files around using maven2

2005-11-22 Thread Edwin Punzalan
Hi, The assembly plugin accepts an xml configuration file called assembly descriptor instructing it how to build your project. You are right that assembly:assembly can create a bin jar but that is just one of the many things it can do. Read

Re: [m2] can't reach maven-proxy

2005-11-21 Thread Edwin Punzalan
- Didier BRICHET Mél : [EMAIL PROTECTED] --oo00---00oo- Edwin Punzalan a écrit : Hi, are you sure its proxy you want? Proxies only forwards requests from private machines to those on the internet. If you want maven to go to your own repository, then setup

Re: Changing WAR default goal

2005-11-20 Thread Edwin Punzalan
Hi. The war:war goal is executed for all projects with packaging=war. I think overriding this default value is not supported yet. However, doing mvn test war:exploded would be a work-around as package is done after tests have passed. Frank Mena wrote: How do I change the default goal

Re: [m2] can't reach maven-proxy

2005-11-20 Thread Edwin Punzalan
Hi, are you sure its proxy you want? Proxies only forwards requests from private machines to those on the internet. If you want maven to go to your own repository, then setup a repository with id central so that the ibiblio repo will be overridden in your pom.xml. Or if you want to put

Re: [m2] can't reach maven-proxy

2005-11-20 Thread Edwin Punzalan
Also, please see: http://maven.apache.org/guides/introduction/introduction-to-repositories.html Didier BRICHET wrote: Hello, I'm trying maven in a corporate environnement. My problem is to use maven-proxy, to sit on my main server and imitate ibiblio. To do this, on a Windows XP machine

Re: [m2] install:install-file ignores localRepository?

2005-11-18 Thread Edwin Punzalan
Hmm... I have a different repo location too but install-file is working perfectly on my machine. I'm using 2.0.1 though. Wendy Smoak wrote: I'm trying to install a third-party .jar into a repository (on a shared drive) that is different from my local repository: (reformatted for

Re: [m2] how to convert project.xml to pom.xml?

2005-11-14 Thread Edwin Punzalan
Hi, see if this helps: http://maven.apache.org/guides/mini/guide-m1-m2.html [EMAIL PROTECTED] wrote: Hi, A colleague of mine started working with m1. But the Eclipse plugin is not working out for us since we have multiple (12!) projects with dependencies between them. The new Eclipse

Re: [m2] pmd and java 1.5 site error: pmd doesn't know it's 1.5

2005-11-03 Thread Edwin Punzalan
The compiler plugin parameter for JDK 1.5 is used for compiling sources. if you want PMD to know that it should 1.5, you should also tell it via a configuration using targetJDK Geoffrey wrote: I have a project with 1.5 java code. It has the following compile/reports configuration in the

Re: How to use CheckStyle plugin?

2005-11-01 Thread Edwin Punzalan
Hi, There seems to be a confusion for the propertiesFile for m2 checkstyle plugin. propertiesFile in m2 checkstyle is the overriding properties sent to checkstyle report. From the name itself, it accepts formatting configurations in key=value format. If you're configuration is in XML

Re: How to use CheckStyle plugin?

2005-11-01 Thread Edwin Punzalan
You have to wait for the patch to be applied though. The jira issue to monitor is here: http://jira.codehaus.org/browse/MNG-1113 Edwin Punzalan wrote: Hi, There seems to be a confusion for the propertiesFile for m2 checkstyle plugin. propertiesFile in m2 checkstyle is the overriding

Re: postgoal function in M2 Need Help?

2005-10-28 Thread Edwin Punzalan
Try removing the phase element in your pom.xml... The plugin authors should have setup their plugins to be bound to a lifecycle phase so you need not put the phase element in the configuration part of the plugin. For example, if a plugin is bound to the generate-sources phase, then using

Re: Parent POM Properties

2005-10-27 Thread Edwin Punzalan
Hi, All of the configuration values in a parent is propagated to its children. So you may not put a configuration in a child when the parent already has it. Bruno Essmann wrote: Hi Is there any way to access property values of a parent POM? I'm aware that any tag in a POM serves as

Re: [M2] How to checkout

2005-10-25 Thread Edwin Punzalan
To checkout a project using maven 2.x, the command would be: mvn scm:checkout -DconnectionUrl=your connection url here Alexandre Poitras wrote: Hi, here's a newbie question but I can't find any guide on the subject. I just want to know how to checkout or performs a clean update of a

Re: [ERROR] Nonexistent component: org.apache.maven.wagon.Wagonhttp

2005-10-25 Thread Edwin Punzalan
If i'm not mistaken that should be the Wagon Http Provider... If it is, the error should go away if you put wagon-http in build - extensions of pom.xml Brian Bonner wrote: Not sure where to send this. I have been trying to figure out why the .wtpmodules is not getting included when I run

Re: Problem with M2

2005-10-21 Thread Edwin Punzalan
Sun jars like servletapi and jta are not in central repo... you should download them from sun website and install in your repo using install:install-file. The download of artifacts is not sorted in any way so each run, you download of artifacts is different. The build will download

Re: CVS Mayhem

2005-10-21 Thread Edwin Punzalan
Which plugin is reporting that its invalid ? Wilfred Springer wrote: All, Could anybody give me a clue why this isn't working? (I have been working with CVS and Maven 2 before, and it never was a problem, until today. Maven tells me that it's not a valid scm url. But why?) scm

Re: CVS Mayhem

2005-10-21 Thread Edwin Punzalan
As I learned from evenisse, after beta-3, scm:checkout will not read the scm in your pom.xml anymore. Either you put the scm connection in the connectionUrl configuration of maven-scm, or put it in mvn command like this: -DconnectionUrl Wilfred Springer wrote: All, Could anybody give me

Re: Problem with M2

2005-10-21 Thread Edwin Punzalan
H icu4j is not in central repo... the name could be incorrect or the developers have not given their artifacts yet. Ross Bamford wrote: On Fri, 21 Oct 2005 10:19:00 +0100, Edwin Punzalan [EMAIL PROTECTED] wrote: Sun jars like servletapi and jta are not in central repo... you

Re: [M2.0] Getting started with M2.0 and Eclipse

2005-10-20 Thread Edwin Punzalan
The source is within http://svn.apache.org/repos/asf/maven/components/trunk look under maven-plugins/maven-eclipse-plugin. Piotr Bzdyl wrote: Hello, There exists an m2 plug-in for Eclipse and I will probably release it next week sometime. It supersedes anything in Mevenide as far as m2

Re: [m2] dependency versions

2005-10-20 Thread Edwin Punzalan
Those are erroneous poms in the repo... We'll be fixing those real soon. For now, you can edit the downloaded pom in your local repo and replace those with the correct versions. Xavier Toth wrote: In http://www.ibiblio.org/maven2/activemq/activemq/3.1/activemq-3.1.pom a number of the

Re: [m2] pom repositories

2005-10-20 Thread Edwin Punzalan
Aside from declaring modules in the parent pom.xml, you should also put parent in the child poms. Have you done that? stanislav lyahnovich wrote: when I specify repositories element in parent pom.xml and build it's modules/ all work fine, maven checks repositories specified in pom.xml.

Re: SCM: cvs user

2005-10-20 Thread Edwin Punzalan
The developer section is not meant to store username/password. servername, path, module is already enough. Do you have a plugin that utilizes this connection? I'm sure that plugin have a configurable username/password outside of pom.xml like -D in CLI Bernd Mau wrote: Hi, how can I

Re: [m2] checksum failed errors for plexus and commons-logging

2005-10-20 Thread Edwin Punzalan
No need to worry about those... Some checksums in central repo are already outdated. They'll soon be updated. Wim Deblauwe wrote: Hi, I'm trying the quick start guide and I got this: [WARNING] *** CHECKSUM FAILED - Error retrieving checksum file for

Re: Maven 1 and Maven 2 next to each other

2005-10-18 Thread Edwin Punzalan
Yes it is possible to have both project.xml and pom.xml Wim Deblauwe wrote: Hi, is it possible to build with Maven 1 and Maven 2? As I understand it, Maven 2 uses pom.xml in stead of project.xml. So if I have a project.xml I can build with Maven 1 and if I add a pom.xml I can build the same

Re: [m2] NoSuchMethodError when running war plugin

2005-10-18 Thread Edwin Punzalan
You should tell the war-plugin where your webapp files are using the configuration parameter warSourceDirectory. By default, the warSourceDirectory is src/main/webapp. You should place the contents of WebRoot there. If that is not acceptably, you should set the warSourceDirectory to

Re: maven ant not finding settings.xml?

2005-10-18 Thread Edwin Punzalan
Can you send us the stack trace or the output so we can better comment on it? Thanks. Brian E. Fox wrote: Hello, We have reproduced this problem on beta 3 and rc1: We are using an ant script to call maven deploy to auto deploy jar, pom and md5's and sh1's for 3rd party libraries to our

Re: [m2] compileSourceRoots

2005-10-18 Thread Edwin Punzalan
That is not possible... in pom.xml. However, plugins that generate sources add their outputDirectory to compileSourceRoots so that the compiler plugin will be able to compile them along with project.build.sourceDirectory. You might want to take a look at source generating plugins to see how

Re: [m2] Local vs Remote Repository

2005-10-14 Thread Edwin Punzalan
Hi. A repository is a place for m2 to get artifacts. I doubt if that can be disabled though. There is, however, -o which will disable all remote activities in m2... yes, it disables the retrieval of artifacts from the repository, but also other offlince tasks like scm activities. The

[m2] netbeans-freeform feature request

2005-09-23 Thread Edwin Punzalan
Hi, Rafale I'm a netbeans user and got hyped when Johnny Ruiz showed me what your mojo can do. Nice work! I have one request, though, before I can use it, if you don't mind. :D Is it possible to specify the Netbeans project location and project folder (as you would when creating a new

Re: versioned jars and InstallShield

2005-09-19 Thread Edwin Punzalan
If you don't want to use the default artifact naming convention used by m2, you can set the filename of the package in your pom.xml like so: project ... build finalNamename/finalName /build ... /project with the above set, the output file will be: name.jar (or name.war,

Re: Change log error with Perforce

2005-09-05 Thread Edwin Punzalan
Hi, this is a bug. I found that the code checks for the first three characters after scm: and that would only work for cvs, svn, and vss. Please file a jira on this. Michael Owen wrote: Hi, I'm using Maven 1.0.2 and I'm trying to get the change log report working. To do this I have put:

Re: How check that project should be rebuilded (source code management)?

2005-08-26 Thread Edwin Punzalan
Try here: https://svn.apache.org/repos/asf/maven/scm/trunk Vov@ Sadovyy wrote: Unfortunately I didn't find snapshot at http://cvs.apache.org/repository/maven/plugins/. Is somewhere another source to get maven-scm-plugin snapshot? tnx. From: dan tran [EMAIL PROTECTED] To: Vov@ Sadovyy

Re: [m2] Error in a POM on M2 official repo

2005-08-26 Thread Edwin Punzalan
It would have already been downloaded into your local repo... so just edit the junit/junit/3.8.1/junit-3.8.1.pom in your local repository and change type to scope. :D [EMAIL PROTECTED] wrote: Hi guys, I'm using a library that depends on struts-menu 2.3. The problem is that the POM of

Re: Why repository dir is placed in a user's home dir ?

2005-08-25 Thread Edwin Punzalan
I'm not sure of the reasoning behind setting the local repo to a user's home directory. But I do know that you can setup the local repository to any directory using project.properties file (settings.xml for m2, also found in user directory). So you need only to set it up to a common

Re: [m2] javadocs??

2005-08-24 Thread Edwin Punzalan
There is a javadoc plugin in svn... here: https://svn.codehaus.org/home/projects/mojo/scm/trunk/mojo Checkout maven-javadoc-plugin and m2 install so you can use it. Most of the plugins in there have not been officially released. And some are even still in progress. Although I can

Re: [M2] outdated xsd?

2005-08-23 Thread Edwin Punzalan
What version of m2 are you using? For beta, reports is deprecated and reporting replaced it. Erick Dovale wrote: Hi there, I just noticed that when adding reports to my pom.xml file my validator does not recognize the reporting tag; it recognizes the reports though but, when using the

Re: M@: skipping tests

2005-08-23 Thread Edwin Punzalan
Try updating m2 from SVN... its working on my side. :D Ilyevsky, Leonid (Equity Trading) wrote: To skip tests, Erick Dovale and Emmanuel Venisse suggested to do m2 -Dmaven.test.skip=true install. Does not work for me, still running the test. I am using the latest alpha-3. What is the secret?

Re: [m2] project.artifacts Classpath, etc.

2005-08-23 Thread Edwin Punzalan
To get the artifacts that's relative only to your plugin, you can use ${plugin.artifacts}. Its the same as ${project.artifacts} except the project object is your plugin. Chris Berry wrote: Thanks much for your answer. When a plugin is called, I'm confused as to what Classpath the plugin

Re: [M2] updating metadata due to status of 'none'

2005-08-23 Thread Edwin Punzalan
That's nice to hear... Ever since we started using beta-1, we kind'a missed the speed of alpha-3. Now we can have peace of mind, that the next release will be as fast as alpha-3. :D Brett Porter wrote: This is only from the current dev version of Maven, and will probably be turned off

Re: [m2] no dependencies in webapp build (bug?)

2005-08-21 Thread Edwin Punzalan
or querying JIRA to confirm. -Original Message- From: Edwin Punzalan [mailto:[EMAIL PROTECTED] Sent: Friday, August 19, 2005 8:21 PM To: Maven Users List Subject: Re: [m2] no dependencies in webapp build (bug?) I believe this is a bug. The provided scope should work the same way

Re: [m2] no dependencies in webapp build (bug?)

2005-08-19 Thread Edwin Punzalan
I believe this is a bug. The provided scope should work the same way as the compile scope with the exception that provided scoped dependencies will not be packaged inside the generated package. Please file a jira issue on http://jira.codehaus.org/secure/BrowseProject.jspa?id=10500 Thank

Re: [M2] system property dictionary ??

2005-08-19 Thread Edwin Punzalan
Hi, m2 collects these expressions from several sources. To start, this is some of what I know: 1) System environment properties 2) pom.xml - expressions here are somewhat bean based. For example, to get the value for the output directory in your pom.xml, you use

Re: [M2] system property dictionary ??

2005-08-19 Thread Edwin Punzalan
With regards to a list, I believe there isn't one available yet. With regards to the default values in pom.xml, you may want to take a look at the maven-model source code. Most, if not all, is in there. John Franey wrote: I've looked and searched, but came up empty. Is there a maven 2

Re: [M2] How to specify a diferent resource directory in resource:resources plugin

2005-08-18 Thread Edwin Punzalan
For lists, you should separate into elements like so: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-resources-plugin/artifactId executions execution phasetest/phase configuration resources

Re: assembly-plugin FileSet includes does not match empty directories

2005-08-17 Thread Edwin Punzalan
Hi brett, I remember sending a patch to [EMAIL PROTECTED] that added a method to AbstractArchiver to include empty Directories... Included with it is the patch for ZipArchiver that make use of the new method. Brett Porter wrote: This should probably be a configurable option. Would you

Re: [M2] skipping tests

2005-08-16 Thread Edwin Punzalan
when running m2, add the -Dmaven.test.skip=true Erick Dovale wrote: Hello there, I am needing a to skip my unit tests for the purpose of setting up some other stuff in maven and not having to wait for them everytime i run some other goal. Is there a way to do this?? Thanks. Erick.

Re: InvocationTargetException on echo ant:echo in maven.xml

2005-08-11 Thread Edwin Punzalan
Try changing it to: echomaven.junit.sysproperties=${maven.junit.sysproperties}/echo Walsh, Richard (Richard) wrote: When I do a maven -e I get the following. The line that is causing this is in the maven.xml and is: echo

Re: InvocationTargetException on echo ant:echo in maven.xml

2005-08-11 Thread Edwin Punzalan
I think Brett's reply is more realistic. ^_^ Walsh, Richard (Richard) wrote: Hi Edwin, I tried this with no luck. I also tried commenting the echo out, it simply moved to the next ehco and complained about it. Thanks, Richie. -Original Message- From: Edwin Punzalan [mailto:[EMAIL

Re: [Fwd: [M1] How to output java:compile log to file]

2005-08-10 Thread Edwin Punzalan
Try using the OS redirection. For example: maven compile log.txt Keisuke Matsubara wrote: Hi, If someone has some information ,can you give me a hint. Thanks Original Message Subject: [M1] How to output java:compile log to file Date: Wed, 10 Aug 2005 19:31:41 +0900 From:

Re: How to load unknown dependencies.

2005-08-10 Thread Edwin Punzalan
The url must be set to the root folder of the jars... in your case, it should be file:///D:/shared/repository I haven't seen file: get used as a repo before, but I guess that should work. Hogeweg, Erwin (GE Infrastructure) wrote: Hi Brett, Like: repositories repository idjmf/id

Re: How to load unknown dependencies.

2005-08-10 Thread Edwin Punzalan
jmf:jmf:2.1.1:jar from the specified remote repositories: http://repo1.maven.org/maven2, file:///D:/shared/repository -Original Message- From: Edwin Punzalan [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 10, 2005 10:31 PM To: Maven Users List Subject: Re

Re: [M2] Maven PMD errors

2005-08-09 Thread Edwin Punzalan
Mine does... I guess it does require some tidying. :D Brett Porter wrote: Does the rpeort get generated correctly? I know we have some tidying up to do in the velocity portion of the site generation. - Brett On 8/9/05, Adam Hardy [EMAIL PROTECTED] wrote: Does anybody else know what I

Re: [clover] Release a clover plugin (1.10?) for Clover 1.3.9?

2005-08-03 Thread Edwin Punzalan
Yup. I have seen several [ANN] messages in this user list. Gary Gregory wrote: Does an [ann] get posted here when plugins are released? Should I watch another list? Thanks, Gary -Original Message- From: Vincent Massol [mailto:[EMAIL PROTECTED] Sent: Monday, August 01, 2005

Re: [M2] Tutorial example not working for me

2005-07-15 Thread Edwin Punzalan
have you tried removing the id tag from your mojo? Michael Owen wrote: Hi, Firstly, I'm using Maven 2 alpha 3. When I try to make to make the Marmalade plugin at http://maven.apache.org/maven2/developers/developing-plugins-with-marmalade.html, I get the following error:

Re: [M2] Tutorial example not working for me

2005-07-15 Thread Edwin Punzalan
, doesn't install the plugin in the local repository and the goals m2 hello:hello or m2 hello don't work. Thanks for help btw. :) Mike brbrbrgt;From: Edwin Punzalan lt;[EMAIL PROTECTED]gt;brgt;Reply-To: quot;Maven Users Listquot; lt;users@maven.apache.orggt;brgt;To: Maven Users List lt;users

Re: Plugin never invoked (m2)

2005-07-06 Thread Edwin Punzalan
To use your plugin, you should include the plugin in your project pom in the plugins executions of the project using the plugin. Can you send the pom.xml of your project, too? Wilfred Springer wrote: Hi, I'm trying to get my own plugin running (m2), but it is never invoked. If I try to

Re: Plugin never invoked (m2)

2005-07-06 Thread Edwin Punzalan
I noticed that the groupId of your plugin pom is customed. Try changing it to: org.apache.maven.plugins Wilfred Springer wrote: Hi, I'm trying to get my own plugin running (m2), but it is never invoked. If I try to use it in a project, then Maven seems to be aware of it, but never invokes

Re: Plugin Matrix and m2 authors

2005-07-06 Thread Edwin Punzalan
Hi, Jason. I think I saw Allan Ramirez post the javacc plugin in jira Jason van Zyl wrote: Howdy, I've update the matrix to include authors of m2 plugins so that folks wishing to implement a plugin can see if there is already anyone working on it. Just so people are aware of what others are

Re: Generate sources example [was: Re: Maven2 and jaxp plugin]

2005-07-06 Thread Edwin Punzalan
Hi, Which version are you using? This was fixed accdg to trygvis. My version from svn would download the plugin using the groupId. Try downloading the svn source and bootstrap your m2. Vitaliy Geraymovych wrote: Ok, I resolved the issue that I was having. My plugins section was outside

Re: m2 site plugin property not recognized

2005-07-01 Thread Edwin Punzalan
What goal did you specify? site:site? or site: deploy? puschteblume wrote: Hi I have following entry in pom.xml: project build sourceDirectorysrc/main/sourceDirectory plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-site-plugin/artifactId

Re: m2 site plugin property not recognized

2005-07-01 Thread Edwin Punzalan
Anyway, if you're deploying the site you should use site:deploy. Also, siteDirectory is where your site files are. The files in siteDirectory are zipped into the workingDirectory. So, if you want to deploy your site to ${basedir}/www, you should put that to workingDirectory like so:

Re: Multiproject property overriding.

2005-06-28 Thread Edwin Punzalan
line using |-D| will override everything. Gaurav Kushwaha wrote: Shouldn't build.properties in master project override the properties specified in the individual project's project.properties ? Thanks, Gaurav. On 6/28/05, Edwin Punzalan [EMAIL PROTECTED] wrote: Try using the -D

Re: [M2] including a test jar in test phase

2005-06-27 Thread Edwin Punzalan
You can try adding testResources in your pom.xml like so: testResources testResource #class_Resource directory./path/test.jar/directory /testResource /testResources where the directory element can be an absolute path or a relative path to your pom.xml c_inconnu3 wrote: Hi, I want

Re: Multiproject property overriding.

2005-06-27 Thread Edwin Punzalan
Try using the -D option in the command line... that will override all properties in all properties file. ;) Gaurav Kushwaha wrote: Hi have a multiproject and multiple sub projects. I have a property that is defined in each sub project. But occasionally I want to override it by changing it

Re: M2 - Dependent Jars for EJB

2005-06-21 Thread Edwin Punzalan
I maybe wrong but I think for the client jars to be included in the ejb jar, you should configure your ejb plugin to do so like: plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-plugin-parent/artifactId configuration

<    1   2   3   4   >