Re: SCM Username/Password

2008-02-06 Thread Edwin Punzalan
I believe there is a separate UI for the release, have you used that? On Feb 5, 2008 11:30 AM, deckrider [EMAIL PROTECTED] wrote: Hello, I want to have the users who add builds to continuum to enter their SCM Username/Password. However this isn't working during the commits needed to run

Re: Generated Sources and IDEA

2007-07-02 Thread Edwin Punzalan
The IDEA plugin is supposed to automatically remove the exclusion of the target directory if any of the generated sources is located beneath it. Its in Jira: http://jira.codehaus.org/browse/MIDEA-92. On 6/30/07, Frederick N. Brier [EMAIL PROTECTED] wrote: I followed the link you provided.

Re: Release:perform Goals

2007-07-02 Thread Edwin Punzalan
IIRC, site:attach-source is not part of the default release goals try setting useReleaseProfile to false On 7/2/07, *Christiaan [EMAIL PROTECTED] wrote: Hello: The problem is when I do a release:perform the source and javadoc are generated by default. I assume this has something todo with

Re: Newbie question: Building master projects with a single version number.

2007-04-17 Thread Edwin Punzalan
No. When releasing from a parent pom along with its modules, the release plugin will also update the module parent versions to the correct parent version. Its a different scenario though if you're ONLY releasing the parent pom. In which case, you have to manually update the module projects to

Re: Goal

2007-04-16 Thread Edwin Punzalan
Maybe this is a good chance to set: testFailureIgnore to true. See http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html#testFailureIgnore On 4/16/07, Mario Roman [EMAIL PROTECTED] wrote: Hi all, I using Maven2 with Vulcan (http://code.google.com/p/vulcan/). I want to run

Re: How to specify where to copy particular files

2007-04-10 Thread Edwin Punzalan
Two ways: * First is to save the bar.xml into src/main/resources/foo/bar.xml so you don't have to configure anything. * Second is to use targetPathfoo/targetPath in resource On 4/10/07, Rod Mclaughlin [EMAIL PROTECTED] wrote: I know how to make Maven copy a buncha files into the classpath,

Re: How to exclude some java source files

2007-04-10 Thread Edwin Punzalan
You mean you want to exclude the source files from compilation? Then use excludes in the compiler plugin. Please refer to http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html. On 4/10/07, sunynec [EMAIL PROTECTED] wrote: How to exclude some java source files in pom.xml

Re: Release plugin: able to create branches?

2007-04-10 Thread Edwin Punzalan
Hi Graham. No, the release plugin does not have a separate goal for that. you might want to look at the maven-scm-plugin On 4/9/07, Graham Leggett [EMAIL PROTECTED] wrote: Hi all, We have been using the release plugin very successfully to create tags and keep version numbers up to date for

Re: Maven mojo Compilation failure

2007-04-10 Thread Edwin Punzalan
The stacktrace is incomplete... there may be a message coming from the java compiler (javac) itself. On 4/6/07, Hodanics, Charles J. [EMAIL PROTECTED] wrote: Can someone assist with the following error when I run Maven2 compile from eclipse and continuum. I have checked a few posts and seen

Re: Maven Assembly:Assembly plugin issue

2007-04-10 Thread Edwin Punzalan
Try using the other assembly goals... some of them doesn't fork a new lifecycle. Please see: http://maven.apache.org/plugins/maven-assembly-plugin/plugin-info.html On 4/5/07, Kishor Patil [EMAIL PROTECTED] wrote: Greetings !! Maven's assembly:assembly mojo Invokes the execution of the

Re: release:perform vs. scm:bootstrap

2007-04-09 Thread Edwin Punzalan
I'm not sure about what scm:bootstrap does, but I'll tell you what the release goals do: For release:prepare, the plugin will update the poms to release versions, do a successful build, commit changes, and then tag the release. Then it updates the pom again to the next development version, do

Re: [M2] Assembly Plugin causes Rebuilds

2007-02-12 Thread Edwin Punzalan
hmm... the assembly comes with two versions for each goal. For example, the goals assembly and attached both basically do the same thing but they differ in how you use them. The assembly goal is used in cli and the attached goal is used inside pom executions. Correct me if I'm wrong, but

Re: Two questions on maven-plugin-testing-harness

2007-02-11 Thread Edwin Punzalan
Please see my inline comments below... Jochen Wiedmann wrote: Hi, I am currently trying to use the maven-plugin-testing-harness for testing a report plugin. Two questions came up so far: 1.) When I run the test, I receive the following exception:

Re: [M2] Execute only in the parent POM and some sub-modules ?

2007-02-11 Thread Edwin Punzalan
For now, you can't. You need to put the plugin into the poms of the projects where you want it to run. Rémy Sanlaville wrote: Hi, I wonder if it is possible to execute a plugin only for some sub-modules from the parent pom ? I have a multi-modules projects parent | |-- module A | |--

Re: [m2] Two questions on maven-plugin-testing-harness

2007-02-11 Thread Edwin Punzalan
location to configure it. Re #2. AFAIK, only the build section of the test pom is ever read by the testing harness. But feel free to file a jira issue requesting for an improvement :) Cheers, Franz Jochen Wiedmann wrote: Hi, Edwin, first of all, thanks for your reply. On 2/11/07, Edwin Punzalan

Re: [m2] Execute only in the parent POM and some sub-modules ?

2007-02-11 Thread Edwin Punzalan
Hi, franz. inherited is used inside parent poms... if you want to run the plugin only in the parent pom and don't want modules to run them (through inheritance). You don't put it inside your modules unless they themselves have their own modules. franz see wrote: Good day, Either this or

Re: dependencies are bloated in M2

2007-02-06 Thread Edwin Punzalan
I don't undestand this... since when did compile-time libraries become not needed in runtime ? even servlet-api is needed at runtime, its just that they're being provided by the containers. Please use exclusions. From how I see it, let's say we have Artifacts A, B and C. A depends on B

Re: You must specify at least one goal. Try 'install'

2007-01-25 Thread Edwin Punzalan
The basic command for maven is mvn [goal|phase] where goal is a plugin goal, and phase is lifecycle phase install is an example of a lifecycle phase... you can type several space delimited goals/phases and maven will execute them. For a list of maven lifecycle phases, please see:

Re: mvn test - how to invoke a specific class from command line

2007-01-23 Thread Edwin Punzalan
There are two ways actually to tell surefire which tests to run. Chris already provided one: using includes/excudes which requires that you edit your pom.xml. Another way, which I use when I am editing a single test class is using -Dtest=class name in cli. Please see:

Re: accessing sources of third party jars

2006-12-26 Thread Edwin Punzalan
If the artifacts have sources and javadocs deployed with them, then using -DdownloadSources=true and -DdownloadJavadocs=true is what you need. The plugin will download them and attach them to the project to help you in your development. Hope that helps ^_^ Christian Goetze wrote: This

Re: Mojos, Testing, and Dependency Resolution

2006-12-12 Thread Edwin Punzalan
It depends on what you'll do with ${project.artifacts}... I usually just create several artifact stubs into a List and inject the list into the plugin bec that's all what my plugin needed. Your plugin may need the actual jars or even poms, which is still doable with stubs but requires more

Re: Execute mvn package from a mojo

2006-12-12 Thread Edwin Punzalan
You may be doing it wrong... or I may be reading it wrong, ;) If your mojo is generating sources, you should do it in the generate-sources phase and add the directory where the generated sources are (usually in /target/generated-sources/mojo-name) in ${project}. This way, you can run mvn

Re: Is this possible with any Maven plugins?

2006-12-12 Thread Edwin Punzalan
#1 and #2 is doable with the cargo plugin, I think. And there's the Ant plugin for simple stuffs when no available plugin is doing it atm. Hope that helps. ^_^ Stephane Marquis wrote: Hi everyone, As a new Maven\Continuum user (started yesterday), i'm trying to make the

Re: Cannot login to Archiva web application

2006-12-12 Thread Edwin Punzalan
seeing the logs, you we're able to login correctly but your username isn't allowed to edit configuration so you're prompted to login as admin. what version of archiva are you using ? Michael Horwitz wrote: Hi, I have managed to get Archiva up and running as per the Getting Started

Re: [Surefire plugin] console output of tests

2006-11-08 Thread Edwin Punzalan
Please see surefire documentation, especially http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html#useFile Default value is true so its not using the console... try setting it to false. Hope that helps, ^_^ Wim Deblauwe wrote: Hi, we are currently converting from M1

Re: [Surefire plugin] console output of tests

2006-11-08 Thread Edwin Punzalan
Please ignore what I said below, clearly it shows that I need to go to sleep asap. ^_^ What is it that you want to do? Output your System.out and System.err into the generated file also ? (similar to one of your posted link) Edwin Punzalan wrote: Please see surefire documentation

Re: Transitive dependecies

2006-11-07 Thread Edwin Punzalan
Dependencies should be marked as optional if it is not required. There's nothing bad with transitivity if the poms are correct... it actually makes dependency management easier. Broken poms make transitivity look bad. Wendy Smoak wrote: On 11/7/06, Sebastien Brunot [EMAIL PROTECTED]

Re: Release doesn't pass args

2006-11-07 Thread Edwin Punzalan
Have you tried passing through the preparationGoals parameter ? Its default is clean integration-test... maybe you can instead have clean integration-test -Denv=dev ? Emmanuel Hugonnet wrote: Hi, How do you pass an argument to your maven build when releasing ? I have a project with 5

Re: Transitive dependecies

2006-11-07 Thread Edwin Punzalan
can copy much more classes than really needed : you're using library A, which a subset of class uses library B. If you don't use this particular subset of classes in library A, you don't need the dependency on library B (I hope it's clear). Sebastien -Original Message- From: Edwin

Re: Looking for a simple maven assembly example

2006-11-07 Thread Edwin Punzalan
Please see: http://people.apache.org/~epunzalan/maven-assembly-plugin/ Christian Goetze wrote: I've read the better builds with maven book, I've looked at http://maven.apache.org/plugins/maven-assembly-plugin, but I'm still not sure I understand how this is supposed to work. I just want

Re: problem with provided scope

2006-11-06 Thread Edwin Punzalan
for helping, Joachim Edwin Punzalan wrote: hmm... I'm pretty sure the provided scoped artifacts appear in the compile phase... maybe what your project is missing are the transitive dependencies of the provided artifact? Joachim Van der Auwera wrote: I am using maven 2.0.4 In my project, I

Re: problem with provided scope

2006-11-05 Thread Edwin Punzalan
hmm... I'm pretty sure the provided scoped artifacts appear in the compile phase... maybe what your project is missing are the transitive dependencies of the provided artifact? Joachim Van der Auwera wrote: I am using maven 2.0.4 In my project, I have some artifacts which are defined as

Re: Mirrors and repositories

2006-11-03 Thread Edwin Punzalan
central and you want to override the URL for central to your proxy. 2. You know of a geographically closer mirror to some repo (often central) and you want to use that mirror rather than the original one. On 11/2/06, Emmanuel Hugonnet [EMAIL PROTECTED] wrote: Edwin Punzalan a écrit : repositories

Re: maven magic in effective-pom and exported-pom

2006-11-03 Thread Edwin Punzalan
although it may seem like it but ${pom.organization.name} only translates to a path to your project's pom.xml content which is projectorganizationname. hope that helped, ^_^ kelvin goodson wrote: I'm trying to fix my manifest to contain an Application-Vendor-Id. I'm using the

Re: Mirrors and repositories

2006-11-02 Thread Edwin Punzalan
repositories stores artifacts and lets mvn download from it. mirrors are like copies of a repository... you use it when a repository is inaccessible or too slow. Hope that helps ^_^ Emmanuel Hugonnet wrote: Hi, I am wondering about the difference between defining a mirror and defining a

Re: How do I use the 'short name' of a plugin?

2006-10-29 Thread Edwin Punzalan
That is correct. More info can be found here: http://maven.apache.org/guides/introduction/introduction-to-plugin-prefix-mapping.html Tom Huybrechts wrote: You need to add a plugin group for com.polarrose.com in your settings.xml. See

Re: [CONTINUUM] working copy locked

2006-10-28 Thread Edwin Punzalan
This could be worth a feature... probably a button or link or checkbox to do always do a svn cleanup before checkout. Mark Reynolds wrote: In a command prompt, go to continuum's working copy directory and execute the command svn cleanup. On 10/28/06, Jorg Heymans [EMAIL PROTECTED]

Re: How to merge two assembly descriptors?

2006-10-27 Thread Edwin Punzalan
I think the assembly descriptor supports importing from another descriptor file. Please see: http://people.apache.org/~epunzalan/maven-assembly-plugin/examples/single/using-components.html Hope that helps ^_^ Zeltner Martin wrote: Hello everybody! I'm working with

Re: Impossible to build ourproject from scratch

2006-10-27 Thread Edwin Punzalan
Hmm... I think this can be fixed by providing those artifacts in a snapshot repository so maven can download them. Emmanuel Lecharny wrote: Hi all, it's actually impossible to build Apache Directory Server project just after a svn co, with a clean maven repo (like a new user will do), for

Re: Codehaus repository needed even using released plugins only

2006-10-27 Thread Edwin Punzalan
That's correct, released plugins should only have released dependencies. Please provide the stacktrace so we can see if what you say really happened and which plugin breaks that. Syvalta wrote: Hi, if a new user starts to use our maven build and the codehaus repository happens to be down,

Re: maven-assembly-plugin woes

2006-10-27 Thread Edwin Punzalan
Last I checked, the repository works. Did you have a problem with it ? Swenson, Eric wrote: I have a large project that has some jar dependencies that are not in any of the public repositories. Licenses prevent their being put there. Rather than have my maven2 projects explicitly refer to

Re: Help with multiple Repositories

2006-10-27 Thread Edwin Punzalan
Please see my inline comments below... I hope I am of any help, ^_^ Ryan, Scott D wrote: I am trying to set up a fairly complex set of repositories and am running into some challenges. I think most of it is my understanding of the details of how Archiva is structured. Once I get a better

Re: NoClassDefFoundError running Checkstyle reports

2006-10-26 Thread Edwin Punzalan
rahul, if you're using snapshot versions of the plugins, you might want to install them from source... what probably happened is maven downloaded from the apache snapshots an old version Rahul Thakur wrote: Hi, I am getting the error below when run 'mvn site-deploy' and checkstyle

Re: Latest code is missing some missing imports from reporting package and will not build

2006-10-26 Thread Edwin Punzalan
you need to build project-info-reports and install it locally. The snapshot repo is outdated... someone should re-deploy all the plugins Scott Ryan wrote: I am trying to build the latest version of the source. I deleted my maven repository and started from scratch to make sure all my

Re: Understanding Maven classpath

2006-10-09 Thread Edwin Punzalan
probably related to MNG-1379 ? Manuel Ledesma wrote: I'm writing a plug-in for Weblogic 9.2 and I having a hard time make it work. The issue arrives because I need to use Weblogic from the installation directory, otherwise it won't work. So I'm specifying the dependency using system

Re: Multi-module project in continuum

2006-09-14 Thread Edwin Punzalan
Just the parent section inside the modules and the modules section in the parent pom will do. The modules section in the parent pom tells maven where the modules are already. Richard Abbuhl wrote: We have some CVS modules which are maven2 projects: acme-web, acme-upload, and acme-ear. I

Re: Plugins Executions

2006-09-14 Thread Edwin Punzalan
There is a phase in execution... you can put it there. Douglas Ferguson wrote: If you are define a plugin in your pom that isn’t binded to a lifecyle phase, and then add executions to the plugin. When will this execute? I was thinking that it would be great if you can define 2

Re: maven-jetty-plugin PluginDescriptor

2006-09-06 Thread Edwin Punzalan
Hi. I had the same problem and resolved it by using this instead: mvn org.mortbay.jetty:maven-jetty-plugin:6.0.0rc4:run Hope that helped. ^_^ franz see wrote: Good day, I have just checked out jetty from [1], and I built it using mvn clean install -DupdateReleaseInfo=true. And it

Re: Assembly madness...

2006-08-08 Thread Edwin Punzalan
please see a staging site for the assembly plugin with your use-case as an example: http://people.apache.org/~epunzalan/maven-assembly-plugin/examples/multimodule/index.html mike7 wrote: I am trying to make an assembly out of many modules (.jar) installed in a shared repository. Here is what

Re: Assembly issues with modules

2006-08-07 Thread Edwin Punzalan
Just like my comments in the MASSEMBLY-99, I am unable to reproduce the issue. Can you provide a test case? Vinod Panicker wrote: Hi, I've got a project that has modules (multi-project). The problem is that during the assembly creation process, I'm unable to exclude dependencies that are

Re: Deploying Output From Assembly

2006-08-07 Thread Edwin Punzalan
You can just deploy it but have the assembly plugin run in the package phase. The id of the assembly descriptor becomes the artifact classifier in case you want to use the one generated by the assembly. Douglas Ferguson wrote: I would like to deploy a zip file that is output from my

Re: maven2 surefire haltOnFailure

2006-08-02 Thread Edwin Punzalan
Maybe its just you... I've never experienced surefire to default haltOnFailure to false. Dennis Klavans wrote: My test execution does not seem to stop on a failure. Essentially, I need the JUnit haltOnFailure/haltOnError functionality. Researching snippets on the web seems to suggest that

Re: How do I create documentation?

2006-07-31 Thread Edwin Punzalan
To generate the site, use mvn site hope that helps ^_^ Stefan Sayk wrote: Hi all, I've a little probelm generating the maven site sources (src/site). If I try it I always get the following Errror: C:\say\Workspace\OSISmvn archetype:create -DgroupId=de.sayk.osis -DartifactId=O SIS

Re: mvn idea bundles provided libraries

2006-07-31 Thread Edwin Punzalan
patch applied, thanks. Btw, I added the unit test for this new feature. ^_^ Roald Bankras wrote: I've reported, and tried to fix it in MIDEA-62. Roald Bankras Software Engineer JTeam b.v. -Original Message- From: Roald Bankras [mailto:[EMAIL PROTECTED] Sent: Monday, July 31, 2006

Re: mvn idea bundles provided libraries

2006-07-31 Thread Edwin Punzalan
just do mvn install -DupdateReleaseInfo=true on your machine. Sanjiv Jivan wrote: Thanks Roald, Edwin. Can someone provide instructions on how to install this plugin if I build it from SVN? Thanks, Sanjiv On 7/31/06, Edwin Punzalan [EMAIL PROTECTED] wrote: patch applied, thanks. Btw

Re: dependency on two versions

2006-07-26 Thread Edwin Punzalan
Hi. Direct dependencies take precedence over transitive dependencies. Therefore, if you declare ehcache 1.2 in your pom.xml, then any transitive dependency of the same artifact but different version will not go into your project's classpath. No need to exclude if the problem is only the

Re: modules and assembly problem

2006-07-25 Thread Edwin Punzalan
jar-with-dependencies won't work for a pom project. You need to use moduleSets... Please see http://maven.apache.org/plugins/maven-assembly-plugin/examples/index.html. Damien Viel wrote: Hi all, I still have problem with the assembly plugin. :( I'm trying to build a zip file of my

Re: modules and assembly problem

2006-07-25 Thread Edwin Punzalan
] Final Memory: 11M/20M [INFO] Can anyone have a idea ? Damien Edwin Punzalan a écrit : jar-with-dependencies won't work for a pom project. You need to use moduleSets... Please see http://maven.apache.org/plugins/maven

Re: [M2] Insert variables in xdoc/apt files

2006-07-18 Thread Edwin Punzalan
that the site will use as a download folder. But if I want my download.xml xdoc file to make a link that automatically stays up to date by adding the right version number to the href, how do I do it? Edwin Punzalan a écrit : You can probably use a filtering plugin like the resource plugin to filter

Re: Please review maven-eclipse-plugin

2006-07-18 Thread Edwin Punzalan
Its in SVN: http://svn.apache.org/repos/asf/maven/plugins/trunk/pom.xml Brett said he'd deploy it... not sure if its done already or not yet. But it should be in apache snapshots repo when deployed: http://snapshots.maven.codehaus.org/maven2 MacHershell wrote: Where can I get the

Please review maven-eclipse-plugin

2006-07-17 Thread Edwin Punzalan
Hi, Here are the changes I've made: - created three sample usages: - attaching library sources - preventing module references - providing project natures and build commands - added three FAQ entries - some fixes to improve site documentation - docck compliance Staging site is

Re: [M2] Insert variables in xdoc/apt files

2006-07-17 Thread Edwin Punzalan
You can probably use a filtering plugin like the resource plugin to filter your files before running the site goal. Sebastien Pennec wrote: Hi, I've been battling with xdoc and apt files for some hours now, and looking around on the web, too: I haven't found any example of xdoc/apt file

Re: Find POM for artifact

2006-07-17 Thread Edwin Punzalan
You don't need an instance of the MavenProject to parse it, you need only to make it into a Model object... which has a file reader named MavenXpp3Reader, IIRC. Hope that helps and good luck on your m1 conversion. ^_^ christian domsch (innoWake gmbh) wrote: Hi all, I have a mojo

Re: i need help by change variable compileSourceRoots in mojo

2006-07-13 Thread Edwin Punzalan
compileSourceRoots is read-only. outputDirectory is project - build - outputDirectory in your pom.xml buildDirectory is project - build - directory in your pom.xml ThE-cLoN NoLc-EhT wrote: Hi, i need change this variable compileSourceRoots outputDirectory buildDirectory where selection

Re: Maven JXR Plugin - Version 2.0

2006-07-12 Thread Edwin Punzalan
Its here: http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-jxr-plugin [EMAIL PROTECTED] wrote: Hello, I would like to use the Maven JXR plugin version 2.0 instead of 2.0-beta-1 because I need a bug fixing (MJXR-11):

Re: Simple question regarding inheritance

2006-07-06 Thread Edwin Punzalan
This might help: http://maven.apache.org/plugins/maven-checkstyle-plugin/tips.html ^_^ Tatiana Escovedo wrote: Hi, I need some advice regarding the correct approach to the simple inheritance problem as follows. I have defined a parent and a child project using Maven 2. The parent

Re: Please need help to run the sample.plugin guide

2006-07-06 Thread Edwin Punzalan
Can you post the pom.xml you created for this? Elid OR wrote: Hi all, I'm new with maven 2, but I use to develop a maven 1 plugin. So my config is : OS : Linux ubuntu 2.6.15-25-686 Java : version 1.5.0_06 Maven : version 2.0.4 So I'm trying to run the plugin development guide :

Re: [M2] Changelog using src folder instead of project root?

2006-07-05 Thread Edwin Punzalan
There's a parameter named: basedir. Its default is ${project.build.sourceDirectory}. You can put ${basedir} to it instead. Manfred Moser wrote: Hi! I am having a problem with changelog report plugin from Maven 2 running under continuum. For some reason the scm working directory is set

Re: idea plugin and general plugin q

2006-07-01 Thread Edwin Punzalan
Hi, what version of the idea plugin are you using? Mine is working just fine. For plugin information, you can look here: http://maven.apache.org/plugins/index.html More IDEA plugin specific would be: http://maven.apache.org/plugins/maven-idea-plugin/plugin-info.html Anton Katernoga

Re: [m2] How to know which artifact ships a given resource?

2006-07-01 Thread Edwin Punzalan
Repository indexing is a known feature and there are apps (i.e. MRM) and websites (www.mavenregistry.com) that provide them. Alessio Pace wrote: Hi, does anybody ever had the need, given a resource name (i.e.: a class name), to know which maven2 artifact(s), and in which versions,

Re: Does Maven2 have support for Maven1 POMS (specifically Id vs ArtifactId

2006-07-01 Thread Edwin Punzalan
Maven 2 have support for Maven 1 Repositories (use legacy layout when specifying the m1 repo) But a Maven 2 repository is expected to have only Maven 2 poms. So an m2 repo with an m1 pom is not valid and maven will report this but however, will not fail the build. To report such

Re: maven-plugin-testing-harness usage

2006-06-30 Thread Edwin Punzalan
Maybe if the test-harness can be provided with a pom.xml file and from there it can build several of the needed expressions. Of course, the plugin configuration should already be in the pom so we need not provide two separate files for the test-harness. I'd also suggest parsing ${basedir}

Re: Assembly plugin with war packaging type fails to work properly

2006-06-29 Thread Edwin Punzalan
The only difference between assembly:assembly and assembly:attached is the object that they are working on. The goal assembly:assembly uses ${executedProject} while assembly:attached uses ${project}. So if assembly:attached works for you, then I suggest you use it. Martijn Dashorst wrote:

Re: maven-compiler-plugin question

2006-06-29 Thread Edwin Punzalan
to wait until tomorrow. If someone else has done such a thing with success, would you mind posting the relevant pom sections? On 6/28/06, Edwin Punzalan [EMAIL PROTECTED] wrote: I think you misconfigured it. You've set the includes to search only in src/generate/java but it seems

Re: Specifying a war to deploy

2006-06-29 Thread Edwin Punzalan
This question should go to the cargo plugin developers... you can either search their archive or join their mailing list. http://cargo.codehaus.org/Mailing+List+Archives But if you're lucky, someone here might already know the answer and give it to you still. ^_^ Jeff Mutonho wrote:

Re: maven-compiler-plugin question

2006-06-28 Thread Edwin Punzalan
I think you misconfigured it. You've set the includes to search only in src/generate/java but it seems like the generated sources are in src/main/java (from /home/malvis/code/test-checkout/orm/src/main/java). Hope that helps. ^_^ Mykel Alvis wrote: Sorry if this is a repeat, but I

Re: JDepend

2006-06-27 Thread Edwin Punzalan
Have you tried putting http://snapshots.maven.codehaus.org/maven2 in your snapshot repository ? Its there at exactly: http://snapshots.maven.codehaus.org/maven2/org/codehaus/mojo/jdepend-maven-plugin/ [EMAIL PROTECTED] wrote: I'm using maven 2.0 and I'm trying to use the JDepend

Re: How to run multiple goals via maven-scm-plugin on a scm provi der plugin

2006-06-26 Thread Edwin Punzalan
That seems wrong... it should be: build plugins plugin artifactIdmaven-scm-plugin/artifactId configuration put here plugin configurations that is common to all the executions /configuration executions execution id/ configuration/ -- put

Re: simple but complicated case - need advice

2006-06-26 Thread Edwin Punzalan
Well, if maven can't do what you really need and you don't have time to customized plugins, you can always use maven + ant (via antrun plugin) to get what you need. I suggest that you use ant scripts on simple stuffs like maybe rename your final packages and such. Wojciech Biela wrote:

Re: How to run multiple goals via maven-scm-plugin on a scm provi der plugin

2006-06-26 Thread Edwin Punzalan
: Edwin Punzalan [mailto:[EMAIL PROTECTED] Sent: Monday, June 26, 2006 1:27 PM To: Maven Users List Subject: Re: How to run multiple goals via maven-scm-plugin on a scm provi der plugin That seems wrong... it should be: build plugins plugin artifactIdmaven-scm-plugin/artifactId

Re: cvs connection string

2006-06-26 Thread Edwin Punzalan
it seems to be missing a module to checkout, this worked but failed: scm:cvs:pserver:[EMAIL PROTECTED]:/var/lib/cvsroot:module Jeff Mutonho wrote: Whats wrong with this scm connection string : scm connection scm:cvs:pserver:[EMAIL PROTECTED]:/var/lib/cvsroot /connection developerConnection

Re: cvs connection string

2006-06-26 Thread Edwin Punzalan
uhm, you put your password in the url like so: scm:cvs:pserver:mutonj:[EMAIL PROTECTED]:/var/lib/cvsroot:module Jeff Mutonho wrote: Ok thanks.That seem to have sorted it out , but now Contiuum is expecting a password in the scm connection string.I've installed a cvsnt and did the manual

Re: Custom Repository Handler?

2006-06-26 Thread Edwin Punzalan
Hmmm... I don't get this. I know maven looks for poms in the repositories, but if cannot find one, it assumes a default pom and won't fail. So I don't think you need a new repository handler for that. What seems to be the problem? Russell, Mark wrote: Here is my scenario... I'm in

Re: scm connection string

2006-06-26 Thread Edwin Punzalan
The space between the path and the module should be a colon (:). Please see: http://maven.apache.org/scm/cvs.html ^_^ Srinivas Pavani wrote: Can some one please help me out in understanding how the scm connection settings work with respect to continuum and maven? Maven2 has the following

Re: [m2] maven-jar-plugin-2.1 status?

2006-06-22 Thread Edwin Punzalan
Please see: http://maven.apache.org/guides/development/guide-testing-development-plugins.html SNAPSHOTs are available in the apache snapshot repository... you put a snapshot plugin repository in your pom.xml so that projects can download the plugin in its snapshot form without the need to

Re: Checkstyle plugin Maven 2

2006-06-22 Thread Edwin Punzalan
for it !! A -Original Message- From: Edwin Punzalan [mailto:[EMAIL PROTECTED] Sent: 21 June 2006 04:22 To: Maven Users List Subject: Re: Checkstyle plugin Maven 2 For configurations, etc... please see: http://maven.apache.org/plugins/maven-checkstyle-plugin/plugin-info.html [EMAIL PROTECTED] wrote

Re: Bug in IDEA plugin.

2006-06-22 Thread Edwin Punzalan
There's a goal idea:clean to delete the idea files for you, btw. ^_^ Roald Bankras wrote: I just ran it for my own project, but it seems to work fine here. Maybe a glitch. You can try to delete the idea files and create them again. Roald Bankras Software Engineer JTeam b.v. -Original

Re: Adding hibernate generated resources to JAR?

2006-06-21 Thread Edwin Punzalan
Depends on the plugin author... if the generated resources is required inside the classes directory, then I guess its more sensible to make the output directory default to target/classes... than to add another resource programmatically. ^_^ Jochen Wiedmann wrote: On 6/21/06, Edwin

Re: Difference between assembly:assembly and assembly:attached

2006-06-20 Thread Edwin Punzalan
They do the same thing... but differs in when you use them. assembly:attached is used inside poms, i.e. mvn package assembly:assembly is the command-line version , i.e. mvn assembly:assembly Jochen Wiedmann wrote: Hi, can anyone explain me the difference between assembly:assembly and

Re: Plugin configuration general question

2006-06-20 Thread Edwin Punzalan
Most of the plugins are found here: http://maven.apache.org/plugins/index.html and from there you can navigate to the plugin page and clicking on a plugin's goal. [EMAIL PROTECTED] wrote: Hi, In terms of plugin configuration, the surefire config at

Re: Adding hibernate generated resources to JAR?

2006-06-20 Thread Edwin Punzalan
You can place your generated resources anywhere in target... but to include it in your package, you need to tell the resources plugin where to look for the resources... which is configured in your pom.xml project build resources resource/ -- here /resources /build /project

Re: Checkstyle plugin Maven 2

2006-06-20 Thread Edwin Punzalan
For configurations, etc... please see: http://maven.apache.org/plugins/maven-checkstyle-plugin/plugin-info.html [EMAIL PROTECTED] wrote: Thanks both. Is it possible to control the output (to direct the report somewhere specific and also to only provide xml output). Also, is it possible to

Re: Few Maven2 questions

2006-06-19 Thread Edwin Punzalan
Please see my reply to your previous mail below: http://www.nabble.com/Maven-questions%3A-defaulting-an-array-in-Mojo%2C-executing-generated-unit-tests-t1802498.html Aleksei Valikov wrote: Hi. 1. When developing a plugin, how would it be possible to provide a default expression for an

Re: [M2] assembly filters

2006-06-18 Thread Edwin Punzalan
Hi, use filesfilefilteredtrue/filtered in your assembly descriptor. Hope that helps ^_^ dvicente wrote: For my project, i have a command file to launch my app (.bat for windows and .sh for unix) During assembly goal, i want to use my maven project properties ( as version value) to

Re: Exclude pom.xml and pom.properties.

2006-06-18 Thread Edwin Punzalan
Maybe you can give us your error... 'cause I tried your configuration in a project of mine and it worked. tulasi wrote: Hi, I am trying to exclude pom.xml and pom.properties while creating jar. for this i am maven-jar-plugin. But i am getting build error. but i am getting error at

Re: Copy jar file to lib folder

2006-06-18 Thread Edwin Punzalan
Is this for the war plugin? tulasi wrote: Hi, Creating jar file defualt in Classes Floder. But i want to move the jar from classes to folder to parent lib folder. how will i ?. please help me -- View this message in context:

Re: [m2] snapshot repository: exploding size

2006-06-18 Thread Edwin Punzalan
IIRC, Maven does not currently support this. But I think I have seen a jira request for this type of feature. Feniks Nator wrote: Hey, we have set up continuum which publishes the artifacts. Our snapshotrepository is growing quickly in size. Every new snapshot is added to the repo, but

Re: Maven 2 install tests

2006-06-18 Thread Edwin Punzalan
Please see: http://maven.apache.org/guides/mini/guide-attached-tests.html ^_^ Christian Schneider wrote: Hi Maven community, I'm using Maven 2 only a short time but I really like it already. Esp. integration with continuum is very nice. I have only one problem: Ony of my projects depends

Re: src assembly with dependencies and eclipse/netbeans file

2006-06-18 Thread Edwin Punzalan
I don't think any of the IDE plugins support this. You can put a jira request for it, though. ^_^ Geoffrey De Smet wrote: I can make an source assembly which adds the dependencies in a lib folder, but I would also like to include a working eclipse and/or netbeans file. The generated

Re: conceptual problem in multi-module project?

2006-06-18 Thread Edwin Punzalan
What is your directory structure for this? The parent pom is searched in the file system FIRST before any of the repositories... The reason why your build is searching the repo is probably because the parent pom is not located ../pom.xml from the module project. You can use relativePath

  1   2   3   4   >