how to make a module's resources available to a plugin

2007-02-20 Thread Alex Soto
Hi, I'm wrapping some existing code in a maven plugin. What I'd like to do is make the module's resources available to the plugin. So for example, there is a properties file in src/main/resources. When the code my plugin wraps looks up the properties file, it should find it via the classpath.

Re: Local repository first

2005-07-12 Thread Alex Soto
see maven --help use the -o OR --offline option On 7/12/05, Scott Yongjie Liu <[EMAIL PROTECTED]> wrote: > > Hello everybody, > > > > Maven is always checking remote repository b4 local even if the > artifacts are already downloaded, is there any way to configure this? > > > > Thanks, > >

Re: Maven plugin to start a java file?

2005-06-06 Thread Alex Soto
you could also use the ant task in an maven.xml On 6/6/05, Wim Deblauwe <[EMAIL PROTECTED]> wrote: > > May sound strange, but is there a Maven plugin that starts a certain > java class using "java.exe" or "javaw.exe" ? Could not find it in the > plugins section of the documentation > > regards,

Re: Unit Test requires access to a file.

2005-05-30 Thread Alex Soto
place a section in your section. http://maven.apache.org/reference/project-descriptor.html#unitTest_resources On 5/29/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hello > > I am a Maven novice and have a question about Unit Test. > > My Unit Test requires access to a file (for testin

Re: Reuse of hibernate domain objects in multiple maven projects?

2005-05-26 Thread Alex Soto
I'm having a little troubling understanding, but let's assume I do :) If your hibernate project produces an artifact named domain-1.0.jar that contains your hibernate pojo's and mappings. Then you should declare it as a dependency in your project.xml for your other projects that depend on it. Y

Re: Is there a tool to graphically see the dependencies between modules?

2005-05-25 Thread Alex Soto
Yes, I can see that being useful since I have some guys ramping up on a codebase as well as being maven newbies. On 5/25/05, Wim Deblauwe <[EMAIL PROTECTED]> wrote: > > Looks cool. Please throw it somewhere :) > > regards, > > Wim > > 2005/5/25, Jason van Zyl <[EMAIL PROTECTED]>: > > On Wed

Re: newbie questions

2005-05-23 Thread Alex Soto
> 1st. I have some libs not present on the ibiblio (jta, mail, activation, > concurrent-1.3.4) and my project depends on them, how do I set > dependencies for that? The 'right way' is probably to setup your own remote repository. I did so for sun jar's I needed that were not available at ibiblio

Re: Laszlo

2005-05-23 Thread Alex Soto
not yet, but plan to eventually on my latest project. Keep the community here informed on what you find out if you have the time. Good luck, Alex On 5/23/05, Jamie Bisotti <[EMAIL PROTECTED]> wrote: > > Is anyone else using Laszlo? Is anyone aware of a Maven plug-in for > Laszlo? > -- > Jamie

Re: [Maven-1.02] scm plugin with subversion, setting checkout dir error

2005-05-23 Thread Alex Soto
True about the system name. I checkout, update, commit with the same URL using just svn, so I doubt it's the lack of a username in the url since it picks up my local username. On 5/23/05, Brett Porter <[EMAIL PROTECTED]> wrote: > > On 5/23/05, Alex Soto <[EMAIL PROTECTED

Re: [Maven-1.02] scm plugin with subversion, setting checkout dir error

2005-05-23 Thread Alex Soto
e username > not being specified. > > either way, its a bug - so if you could file the details that'd be > appreciated (sorry, I susually follow up when someone doesn't file it, > but mustn't have in this case). > > - Brett > > On 5/23/05, Alex Soto <[

[Maven-1.02] scm plugin with subversion, setting checkout dir error

2005-05-23 Thread Alex Soto
Hi I'm trying to use maven to checkout a project. I'm running on windows under cygwin and I'm using the cygwin packaged svn binaries. If I don't set the checkout dir property then it checks out the project under target/checkout. When I set the checkout dir property I get a NullPointerException.

Re: scm svn cruisecontrol issue

2005-05-22 Thread Alex Soto
Well I notice that the docs on the site is for beta-4, is that close to being released? On another note, Brett, what platform do you do development for and use the plugin on? I ask because I'm on windows/cygwin/svn and having problems, which I'll post about when I figure a bit more out. Thanks,

Re: Plugin Developer's Guide?

2005-05-10 Thread Alex Soto
When will it appear on safari? On 5/10/05, Arik Kfir <[EMAIL PROTECTED]> wrote: > Vincent Massol wrote: > > > > >BTW, I have finished writing a Maven book and there's a full chapter on > >developing Maven plugins (40 pages). The book is published by O'Reilly and > >should be available mid-June >

Re: Plugin Developer's Guide?

2005-05-10 Thread Alex Soto
When does it become available on safari? On 5/10/05, Arik Kfir <[EMAIL PROTECTED]> wrote: > Vincent Massol wrote: > > > > >BTW, I have finished writing a Maven book and there's a full chapter on > >developing Maven plugins (40 pages). The book is published by O'Reilly and > >should be available

Re: Problems configuring internal repository

2005-05-04 Thread Alex Soto
proxy for a certain remote repository? That was what was getting me. > It was trying to hit the proxy for the internal repository. > > Thanks for the help! > > /Paul > > Alex Soto wrote: > > > Ok, well the next thing I'd look at is watch the apache access and

Re: Problems configuring internal repository

2005-05-04 Thread Alex Soto
list. Again, I receive the 503 > error. > > /Paul > > Alex Soto wrote: > > > First guess is that since you got a 503 from a request to ibiblio, did > you set, or forget to set some http proxy properties? > > On 5/4/05, Paul Kuykendall <[EMAIL PROTECT

Re: Problems configuring internal repository

2005-05-04 Thread Alex Soto
First guess is that since you got a 503 from a request to ibiblio, did you set, or forget to set some http proxy properties? On 5/4/05, Paul Kuykendall <[EMAIL PROTECTED]> wrote: > Hi, > > I've recently started to investigate Maven, but have run into some > issues when trying to set up an intern

Re: Building on Unix AND Windows

2005-05-03 Thread Alex Soto
Have you tried using forward slashes yet? Alex Soto On 5/3/05, Jamie Bisotti <[EMAIL PROTECTED]> wrote: > We have setup CruiseControl, which is using Maven to build, on a Linux > box, but most (all) developers are currently using Maven on Windows. > We have a parent project, con

Re: Maven + Eclipse

2005-05-02 Thread Alex Soto
I'll assume you mean using eclipse for a mavenized project since that's as far as my experience goes. I've had good luck with the eclipse plugin for generating .project and .classpath files.Just type 'maven eclipse' and a .project and .classpath will be created for your project. Then just imp

Re: Integrate dependencies source code in eclipse

2005-04-14 Thread Alex Soto
The integration of the src zip is cool, but I ended up tracking down the source zip myself from the projects website or generating myself. I haven't found how to 'create' one. On 4/14/05, Milos Kleint <[EMAIL PROTECTED]> wrote: > I didn't know about this eclipse plugin property, but there's > def

Re: Maven site:sshdeploy hanging

2004-11-24 Thread Alex Soto
I'm just guessing, so take it with a grain of salt. But you might need to setup key based logins so you don't need user interaction? Read this http://software.newsforge.com/software/04/03/15/211214.shtml Good luck, Alex Chris Huisman wrote: Hello, when attempting to use maven site:sshdeploy thi