deploying webstart apps with maven

2005-07-12 Thread Ryan Sonnek
Is anyone using maven (JNLP plugin) to deploy webstart applications? I've been trying to figure out a sensible way to deploy my application for a while now. One of the biggest issues i've run into is how should the webstart app be deployed? I think ideally, the jnlp file would be deployed to the

RE: hibernate pom

2005-06-16 Thread Ryan Sonnek
pendencies. So, how does this get fixed? -Original Message- From: Emmanuel Venisse [mailto:[EMAIL PROTECTED] Sent: Thursday, June 16, 2005 3:12 PM To: Maven Users List Subject: Re: hibernate pom Upload instructions are there : http://maven.apache.org/reference/repository-upload.html

hibernate pom

2005-06-16 Thread Ryan Sonnek
Who's responsibile to upload the hibernate jars to ibiblio? I opened a ticket with the hibernate team to correct their POM's but they said they have nothing to do with it. I thought it was the project's responsibility to synchronize with ibiblio? (http://opensource.atlassian.com/projects/hiberna

RE: Why I hate Maven :-)

2005-06-15 Thread Ryan Sonnek
Sent: Wednesday, June 15, 2005 10:16 AM To: Maven Users List Subject: Re: Why I hate Maven :-) On 6/15/05, Ryan Sonnek <[EMAIL PROTECTED]> wrote: > take a look at geronimo for a LARGE project using maven. I haven't looked at geronimo's code, but sometimes large may not mean

RE: Why I hate Maven :-)

2005-06-15 Thread Ryan Sonnek
take a look at geronimo for a LARGE project using maven. -Original Message- From: Anil Arora [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 7:03 PM To: Maven Users List; Brett Porter Subject: RE: Why I hate Maven :-) Your counter point of having multiple artifacts per project is

RE: Eclipse configuration for a root multiproject

2005-06-13 Thread Ryan Sonnek
This problem is solved if use a "flat" project layout. simply place you're parent project.xml in a seperate folder and update the multiproject properties to this: #multiproject settings. maven.multiproject.basedir=${basedir}/../ maven.multiproject.includes=*/project.xml maven.multiproject.excludes

RE: How to send build status in email...

2005-06-03 Thread Ryan Sonnek
The most straightforward solution is usually the right one. It might take a half day to figure out cruisecontrol, but it is much easier than trying to "hack" maven to do something that it's not built to do. -Original Message- From: Muser007 [mailto:[EMAIL PROTECTED] Sent: Friday, June 0

[m2] : commons-pool pom

2005-05-13 Thread Ryan Sonnek
it seems like the commons-pool pom is not correct. It should be pointing to version 1.1-dev. Who should this issue be filed with? Downloading: http://repo1.maven.org/maven2/commons-pool/commons-pool/1.2/commons -pool-1.2.pom.md5 0K downloaded Downloading: http://repo1.maven.org/maven2/stax/stax/

RE: Jmeter/perf testing through Maven?

2005-05-06 Thread Ryan Sonnek
check out junitperf (http://www.clarkware.com/software/JUnitPerf.html). it extends junit, so it runs well with maven/continuous integration. -Original Message- From: Darren Hartford [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 9:09 AM To: Maven Users List Subject: Jmeter/perf testi

Re: [m2] Multiproject & Dependecies

2005-04-26 Thread Ryan Sonnek
I'm stuck with the same usecase (flat project layout). I filed this as jira issue as http://jira.codehaus.org/browse/MNG-359 since I have not seen anymore info on the mailing list. Brett Porter wrote: >You are (mostly) correct. The ordering is currently by dependencies, >then alphabetical. It

RE: Maven Continuum 1.0 Technology Preview Available

2005-04-26 Thread Ryan Sonnek
Excellent! this is something i've been personally looking forward to for a long time. I'm glad to see that it isn't vaporware. is there a public continuum instance up anywhere (codehaus?) where we can check it out without downloading and installing? -Original Message- From: Jason van Zy

RE: Purging old snapshot artifacts

2005-04-12 Thread Ryan Sonnek
I wrote a plugin to delete old snapshots. you might want to search JIRA and see if you can find it. you can either install it in your own sandbox, or vote for the issue and see if any developers can apply it to the codebase. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE

RE: maven, xdoclet, hibernate

2005-03-02 Thread Ryan Sonnek
Konstantin, I'm not sure how you can suggest people migrate to xdoclet2 for hibernate when it is essentially crippled with bugs in the current snapshot version. I have been able to get the hibernate-mapping plugin to work, but the hibernate-config plugin is useless. I really like how xdoclet2 int

RE: Junit with maven does it work

2005-02-28 Thread Ryan Sonnek
I don't have an answer, but i would suggest changing the subject line to something more relevant to get any response. please don't piggyback someone else's thread with a different topic. -Original Message- From: Thomas Porter [mailto:[EMAIL PROTECTED] Sent: Monday, February 28, 2005 3:49

RE: Multiproject and Testing EJBs

2005-02-28 Thread Ryan Sonnek
try this: http://wiki.codehaus.org/maven/CreatingEjbApplications -Original Message- From: Poppe, Troy [mailto:[EMAIL PROTECTED] Sent: Monday, February 28, 2005 12:28 PM To: 'Maven Users List' Subject: Multiproject and Testing EJBs I've got a multiproject set up that generates an EAR art

RE: Multiproject dependency confusion/problem

2005-02-08 Thread Ryan Sonnek
do you have your dependencies in the subprojects setup correctly? checkout the wiki (http://wiki.codehaus.org/maven/CreatingEjbApplications) for more info. I wrote that wiki entry with the same setup that you're using (including eclipse). you just need to update the project.xml of the subprojects

RE: using snapshots

2005-01-11 Thread Ryan Sonnek
change your version in the app-lib dependency to SNAPSHOT like this: com.micom.vangough app-lib SNAPSHOT jar see http://maven.apache.org/reference/user-guide.html#Using_SNAPSHOT_Depende ncies for more info. Ryan -Original Message- From: Randy Xu [mailto:[EMAIL PROTECTED] Sent:

RE: Stale subproject jar files in repository

2005-01-10 Thread Ryan Sonnek
I would suggest changing the project currentVersion to 2.1-SNAPSHOT, and your dependency versions to SNAPSHOT. snapshot dependencies are handles differently, and always look for a newest version. -Original Message- From: Randy Xu [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 10

RE: 1.0.2 startup slow

2004-12-07 Thread Ryan Sonnek
I upgraded to 1.0.2 on a Win2k PC just fine. I did not have to remove my local repository or plugin cache. Just changed MAVEN_HOME to the new location, and on the first execution it cleaned out the plugins. No problems since then. -Original Message- From: Chad Brandon [mailto:[EMAIL PRO

RE: SCM and Multiproject plugins

2004-12-07 Thread Ryan Sonnek
Thanks. T -Original Message- From: Ryan Sonnek [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 10:53 AM To: Maven Users List Subject: RE: SCM and Multiproject plugins I use eclipse and structure my project the same way as you describe (I wrote some of the info on the wiki ab

RE: SCM and Multiproject plugins

2004-12-07 Thread Ryan Sonnek
ule contains all sub-projects... Steve Molloy -Original Message----- From: Ryan Sonnek [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 10:16 AM To: Maven Users List Subject: RE: SCM and Multiproject plugins I do this in my projects by doing this: maven multiproject:goal -Dgoa

RE: SCM and Multiproject plugins

2004-12-07 Thread Ryan Sonnek
I do this in my projects by doing this: maven multiproject:goal -Dgoal=scm:update-project -Original Message- From: Poppe, Troy [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 9:11 AM To: Maven Users List Subject: SCM and Multiproject plugins Is there a way to get the SCM and

RE: Confused about j2ee wiki example and maven

2004-12-03 Thread Ryan Sonnek
try maven multiproject:install-snapshot -Original Message- From: Bert Lamb [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 4:06 PM To: [EMAIL PROTECTED] Subject: Confused about j2ee wiki example and maven I have downloaded the j2ee-project.zip located here: http://wiki.codeh

RE: multiproject & Site:generate

2004-12-03 Thread Ryan Sonnek
try running the following commands: maven multiproject:site maven site -Original Message- From: Haile, Mussie [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 12:01 PM To: [EMAIL PROTECTED] Subject: multiproject & Site:generate I am looking for guide on how to do Maven Site:Gen

RE: Checkstyle: Running Very Slow

2004-12-01 Thread Ryan Sonnek
you actually don't have to put your custom checks in the plugin resources directory. I place my checks directly in the project root and everything works fine for me. -Original Message- From: Eric Giguere [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 11:04 AM To: Maven Users

RE: Reference to Parent Project

2004-12-01 Thread Ryan Sonnek
this suggestion doesn't really play well in a multi-developer environment unless all the developers run the same OS and use the same paths. That's why relative paths are more useful. -Original Message- From: Benedict Heal [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 10:40

RE: problem *not* forking unit tests

2004-11-24 Thread Ryan Sonnek
Ryan Sonnek wrote: >this question comes up so frequently, and the answer is always, "Junit >tests should be forked." Can someone PLEASE change the default behavior >of the test plugin to fork unless it's overridden? It would save on the >constent confusion in this are

RE: problem *not* forking unit tests

2004-11-23 Thread Ryan Sonnek
this question comes up so frequently, and the answer is always, "Junit tests should be forked." Can someone PLEASE change the default behavior of the test plugin to fork unless it's overridden? It would save on the constent confusion in this area. -Original Message- From: Julien Kirch [m

RE: Multiple test types?

2004-11-18 Thread Ryan Sonnek
I think it'd be great for maven to have the concept of multiple test directories like: src/test for unit tests src/int-test for integration tests etc but as it stands now, the most straightforward approach (ie: the least hacking required) is to create a seperate sub-project for each group of tests

RE: XDoclet in Maven

2004-11-18 Thread Ryan Sonnek
you can put a list of remote repositories in the project.properties. then every developer doesn't need to specify this. in my project.properties I always set it to include maven-plugins.sf.net and ibiblio since my project depends on plugins/jars from both of these places. -Original Message---

RE: I am surprised that no one replied to the question I posted yesterday!!

2004-10-28 Thread Ryan Sonnek
change your dependency version to SNAPSHOT, and you'll be set. -Original Message- From: Sachin Bansal [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 10:37 AM To: 'Maven Users List' Subject: I am surprised that no one replied to the question I posted yesterday!! Guys, I pos

RE: multiproject eclipse compatibility

2004-10-04 Thread Ryan Sonnek
sfer for this? Thanks for all of your help! Karl From: Ryan Sonnek [mailto:[EMAIL PROTECTED] Sent: Fri 10/1/2004 2:46 PM To: Maven Users List Subject: RE: multiproject eclipse compatibility no problem. I was going to elaborate on the wiki, but I can't figu

RE: multiproject eclipse compatibility

2004-10-01 Thread Ryan Sonnek
ct-transfer. I could not find any maven plugins that are called project-transfer. Forgive me if I'm confusing something. Thanks, Alex On Fri, 2004-10-01 at 14:21, Ryan Sonnek wrote: > I'm in the same scenerio and should post something on the wiki. I suggest using > maven t

RE: multiproject eclipse compatibility

2004-10-01 Thread Ryan Sonnek
I'm in the same scenerio and should post something on the wiki. I suggest using maven to checkout everything from cvs, then using the project-transfer plugin to import all of the projects. this allows you to keep all projects in parrellel, and import them into eclipse with one step. -Orig

RE: interdependent modules

2004-10-01 Thread Ryan Sonnek
lic dependency. Regds Ashutsoh -----Original Message- From: Ryan Sonnek [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 7:41 PM To: Maven Users List Subject: RE: interdependent modules you need to extract out the cyclic dependencies into their own project C. -Original Message- From:

RE: interdependent modules

2004-10-01 Thread Ryan Sonnek
you need to extract out the cyclic dependencies into their own project C. -Original Message- From: Ashutosh Kumar [mailto:[EMAIL PROTECTED] Sent: Friday, October 01, 2004 8:30 AM To: [EMAIL PROTECTED] Subject: interdependent modules I have a top level directory where I keep project.xml .

maven auto update plugin

2004-09-09 Thread Ryan Sonnek
Does anyone out there know of a plugin that will search for updated versions of installed plugins? I've been thinking about creating one and didn't want to reinvent the wheel. It seems like this plugin could be quite useful since plugins are released on different schedules than the maven distr

RE: [Poll] Writing documentation with Maven

2004-09-07 Thread Ryan Sonnek
already have a gmail accountthanks though. 1. A - xdoc 4. A - notepad 3. I think the BEST way to produce the static xdoc documentation would be to transform a wiki's html. I heard about a confluence plugin, but haven't seen anything more on it. -Original Message- From: Carlos Sanc

RE: no user found for scm plugin

2004-09-03 Thread Ryan Sonnek
ound for scm plugin yup. IIRC, there is a property - something like maven.scm.ignore.developerConnection = true to avoid this? On Fri, 3 Sep 2004 09:03:13 -0500, Ryan Sonnek <[EMAIL PROTECTED]> wrote: > Thanks for the reply Brett. This is how I have my project.xml setup: > &g

RE: no user found for scm plugin

2004-09-03 Thread Ryan Sonnek
instead of wireframe? either change , or if it is using ${maven.username} you might set that to anonymous. I'd suggest only developerConnection should be using ${maven.username} - Brett On Thu, 2 Sep 2004 21:51:52 -0500, Ryan Sonnek <[EMAIL PROTECTED]> wrote: > I'm trying to us

no user found for scm plugin

2004-09-02 Thread Ryan Sonnek
I'm trying to use the scm plugin to checkout my project, but I'm getting the following error. I have my .cvspass created correctly and can connect using the command line cvs executable. also, I'm using version 1.4.1 of the scm plugin. Ryan scm:parse-connection: [echo] Using connection: sc

RE: Is there a way to separate maven's repository from my repository?

2004-08-26 Thread Ryan Sonnek
wouldn't the easiest solution be to lock down the project.xml to only be modified by "approved" personel? -Original Message- From: Courtney, Craig [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 8:57 AM To: Maven Users List Subject: RE: Is there a way to separate maven's reposit

RE: Looking for suggestions on SNAPSHOT cleanup process

2004-08-11 Thread Ryan Sonnek
i wrote a custom goal and submitted it to JIRA that will delete all old snapshots for an artifact. It kept the most recent snapshot and timestamped artifact around though. here's the issue if you want to take a look at it http://jira.codehaus.org/browse/MPREPO-2 enhancements could definately b

java.net poll

2004-07-20 Thread Ryan Sonnek
java.net (http://www.java.net) is hosting a poll about what build system you use for your project. I suggest that some maven users hop over and place their vote! Right now Ant's quite a bit in front... =) Ryan - To unsubscrib

RE: Multi-Project for Eclipse and Directory Structure

2004-07-13 Thread Ryan Sonnek
that's definately one way to do it. otherwise you can run this command from the root project, and you'll be set: maven multiproject:goal -Dgoal=eclipse > -Original Message- > From: Alex Shneyderman [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 13, 2004 9:12 AM > To: 'Maven Users List'

RE: Maven Plugin Plugin 1.5.1 release!

2004-07-08 Thread Ryan Sonnek
I'm just curious, but usually when a whole slew of plugins are released, a new maven release comes out as well. Does this mean that maven 1.0 (final) is right around the corner? > -Original Message- > From: Dion Gillard [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 08, 2004 9:49 AM >

RE: dependency should use not

2004-07-07 Thread Ryan Sonnek
for compiling and running it's unit tests. > > For those that use the multiproject plugin - how do you typically > develop? Do you make tweaks to the "core" module and then > "install" it > before working on your "web" project? > > Thanks, >

RE: dependency should use not

2004-07-07 Thread Ryan Sonnek
if you setup your own remote repository and publish your jars, users can pull down the newest jars from there. might want to change your dependencies to rely on SNAPSHOT though, especially if the code is changing frequently. > -Original Message- > From: Matt Raible [mailto:[EMAIL PROTEC

RE: RFE for the war plugin

2004-06-29 Thread Ryan Sonnek
whoo now, i don't want to get involved, but i do want to let it be known that since this is an open source project, nothing is stopping you from adding the feature you're asking for. * download the source from cvs * make the change you're requesting * submit the change as a patch to JIRA. * hop

RE: How to get xdoclet generating necessary files thru maven?

2004-06-25 Thread Ryan Sonnek
please read the wiki page again. the example posted on the wiki specifically AVOIDS the xdoclet plugin, and instead uses maven goals to do the same work. the plugin and maven goals have nothing in common, and i would suggest using one or the other. I wrote the wiki pages in question, and woul

RE: Is pom.siteDirecotry inheritable?

2004-05-25 Thread Ryan Sonnek
${myparentproperty} > both methods return empty string.. > > Any more suggestions? > > -Dan > > ----- Original Message - > From: "Ryan Sonnek" <[EMAIL PROTECTED]> > To: "Maven Users List" <[EMAIL PROTECTED]> > Sent: Tuesday, Ma

RE: Is pom.siteDirecotry inheritable?

2004-05-25 Thread Ryan Sonnek
sounds like a recursive call. ${pom.siteDirectory} should point to the current project's site directory, which references itself again, etc, etc. if you want to "reuse" it, define another variable in the parent project "mysitedirectory" and use it in both the parent and child: parent - ${mysit

RE: Maven XDoclet plug-in examples?

2004-05-25 Thread Ryan Sonnek
nt: Tuesday, May 25, 2004 11:17 AM > To: Maven Users List > Subject: Re: Maven XDoclet plug-in examples? > > > Why you don't use the xdoclet plugin? > It simplify the maven.xml > > Emmanuel > > - Original Message - > From: "Ryan Sonnek" <

RE: Maven XDoclet plug-in examples?

2004-05-25 Thread Ryan Sonnek
I wrote the wiki example for EJB generation using maven (http://wiki.codehaus.org/maven/CreatingEjbApplications) and have used the ant task to execute xdoclet with much success. my example can be used to generate as many ejbs as you'd like without creating more projects. Let me know if you hav

RE: Inherited properties (RC3)

2004-05-21 Thread Ryan Sonnek
basically, you're expecting the parent project to resolve the property to an absolute path and then pass the absolute path to the subprojects. I don't think this is the case. I think the property is inherited by the subproject, then evaluated to an absolute path from the subproject. > -Or

RE: Inherited properties (RC3)

2004-05-21 Thread Ryan Sonnek
i would recommend moving the parent project to a subdirectory, so that the parent and child projects access the repo with the same path. ex: /my-repo /myproject parent-project (set property to ${basedir}/../../my-repo child-project (extends ../parent-project/project.xml) this is how i

RE: Maven and Integration Test

2004-05-19 Thread Ryan Sonnek
I was REALLY hoping to hear another solution to this problem. I'm running into the same thing, and would like to contain my project code (tests and all). I remember the cactus plugin introducing the concept of src/test-cactus for it's integration test code. Two options would be to reuse the

RE: maven night-build integration

2004-05-04 Thread Ryan Sonnek
might want to check out cruisecontrol (http://cruisecontrol.sf.net) they have the ability to run maven builds (as well as ant builds) and the results are emailed out to users. it's been a while since i used it, but it worked well for me. Ryan > -Original Message- > From: Jörg Hohwille

RE: Is they're a way to put my build.properties in aother place than $home ?

2004-04-28 Thread Ryan Sonnek
In Maven 1.0 RC3, project.properties will be inherited by all subprojects. project.properties is inherited to subprojects? i thought this was a "post 1.0" feature. i've logged a couple issues related to subprojects picking up properties from the parent using RC2, but noone had mentioned that

RE: idea:multiproject / Maven IRC channel

2004-04-27 Thread Ryan Sonnek
could you use the uberjar plugin to jar your application (and dependencies) and then run it just as you would run anyother jar? maybe you're looking for a goal that will do this for you, but i don't know of one. RYan > -Original Message- > From: Geoffrey [mailto:[EMAIL PROTECTED] > Sen

RE: snapshot dependencies

2004-04-27 Thread Ryan Sonnek
i submitted a small patch that cleans up all "old" snapshot dependencies from your local repository, but i haven't heard any activity on integrating it into maven (http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPREPO-2). maybe vote for it, and see if anyone takes notice. Ryan > -Orig

RE: CheckStyle error:Unable to get class information for

2004-04-26 Thread Ryan Sonnek
i've had the same problem. i've filled an issue in jira (http://jira.codehaus.org/secure/ViewIssue.jspa?key=MPCHECKSTYLE-20) regarding this problem and have also searched checkstyle's mailing lists to no avail. if anyone out there has a resolution, i have yet to find it. Ryan > -Original

RE: Maven - Local inter-project dependencies and Eclipse

2004-04-14 Thread Ryan Sonnek
add the property maven.eclipse.dependency to you're B project.xml and you'll be set. just set the property, regenerate your eclipse .project and .classpath, and project A will be setup as an eclipse dependent project. any code changes in A will be immediately picked up by B. this property sho

RE: Multiproject and Eclipse

2004-04-08 Thread Ryan Sonnek
you can use the ejb project from the wiki as an example: http://wiki.codehaus.org/maven/CreatingEjbApplications -Original Message- From: Smith, Matt (MAN-Corporate) [mailto:[EMAIL PROTECTED] Sent: Thursday, April 08, 2004 9:09 AM To: 'Maven Users List' Subject: RE: Multiproject and Eclips