Re: Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Tamás Cservenák
You can try RSO and do a search: https://repository.sonatype.org/index.html#nexus-search;gav~~gwt-servlet~~~ It indexes "most popular" Maven repositories, but not all of them ;) Also, it seems that 2.1.0-RC1 is not in central yet (because it is an "RC"?). Hope helps, ~t~ On Thu, Oct 21, 2010 a

Re: Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Nick Stolwijk
The repository URl is nothing more than just a root URL of the specified directory structure. You can use the url I gave as repository URL. It was not my decision to create a repository for each seperate version, and also in Subversion. ;) With regards, Nick Stolwijk ~Java Developer~ IPROFS BV.

Re: Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Stephen Boesch
This shows how to pick up the artifact. What is the repository url that I would use? 2010/10/21 Nick Stolwijk > It is hard to get the repository, because everyone can start their own > (and in their own way). > > I googled on filetype:jar gwt-servlet:2.1.0-RC1 and found the repository > here:

Re: Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Nick Stolwijk
It is hard to get the repository, because everyone can start their own (and in their own way). I googled on filetype:jar gwt-servlet:2.1.0-RC1 and found the repository here: http://code.google.com/p/google-web-toolkit/source/browse/#svn/2.1.0/gwt/maven for the latest version. With regards, Nick

Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Stephen Boesch
If I am looking for an artificat and have its artifactID and want to find the versions available in public maven repos' (maven central, etc). What might be recommended way to do that? Do I have to already know in advance which repo's to try? E.g. maven central, mvnrepository.com etc. Or is th

Re: newbie question

2010-05-26 Thread Meeusen, Christopher W.
her=mayo@maven.apache.org [mailto: users-return-111621-meeusen.christopher=mayo@maven.apache.org] On Behalf Of Wayne Fay Sent: Wednesday, May 26, 2010 12:50 PM To: Maven Users List Subject: Re: newbie question Getting a bunch of these. Do I have to configure the compiler plugin and explicitly t

Re: newbie question

2010-05-26 Thread Ron Wheeler
ency for that. -Original Message- From: users-return-111621-meeusen.christopher=mayo@maven.apache.org[mailto: users-return-111621-meeusen.christopher=mayo@maven.apache.org] On Behalf Of Wayne Fay Sent: Wednesday, May 26, 2010 12:50 PM To: Maven Users List Subject: Re: newbie quest

Re: newbie question

2010-05-26 Thread Shan Syed
> > -Original Message- > From: > users-return-111621-meeusen.christopher=mayo@maven.apache.org[mailto: > users-return-111621-meeusen.christopher=mayo@maven.apache.org] On > Behalf Of Wayne Fay > Sent: Wednesday, May 26, 2010 12:50 PM > To: Maven Users List >

Re: newbie question

2010-05-26 Thread Wayne Fay
> I guess I miss understood the concept of dependencies.  I thought that it > was used only for .jars that were in a repository say commons-lang-2.4, > but if you have some  api from a vendor, say vendor.jar, that you didn't have > to configure a decency for that. Yes, this is a misunderstandi

RE: newbie question

2010-05-26 Thread Meeusen, Christopher W.
From: users-return-111621-meeusen.christopher=mayo@maven.apache.org [mailto:users-return-111621-meeusen.christopher=mayo@maven.apache.org] On Behalf Of Wayne Fay Sent: Wednesday, May 26, 2010 12:50 PM To: Maven Users List Subject: Re: newbie question > Getting a bunch of these.  Do I

Re: newbie question

2010-05-26 Thread fradj zayen
i totally agree with Wayne, you are missing some dependencies in your pom.xml x.x hope it helps 2010/5/26 Wayne Fay > > Getting a bunch of these. Do I have to configure the compiler > > plugin and explicitly tell it to use the .jars referenced in my bu

Re: newbie question

2010-05-26 Thread Wayne Fay
> Getting a bunch of these.  Do I have to configure the compiler > plugin and explicitly tell it to use the .jars referenced in my build path? No configuration of the compiler plugin should be necessary. You simply need to properly configure your list. Most likely you are simply missing one or m

Re: newbie question

2010-05-26 Thread Shan Syed
s-return-111617-meeusen.christopher=mayo@maven.apache.org] On > Behalf Of fradj zayen > Sent: Wednesday, May 26, 2010 12:37 PM > To: Maven Users List > Subject: Re: newbie question > > hi Chris, > I think you didnt't properly configured the compiler plugin. > below an ex

Re: newbie question

2010-05-26 Thread Wayne Fay
> I get similar errors for annotations and generics.  Anyone know what > might be going on?  Please help a maven newb! This is documented in the Maven FAQ, directly linked from the Maven homepage on the left side under "About Maven". http://maven.apache.org/general.html#Compiling-J2SE-5 Wayne -

RE: newbie question

2010-05-26 Thread Meeusen, Christopher W.
@maven.apache.org] On Behalf Of fradj zayen Sent: Wednesday, May 26, 2010 12:37 PM To: Maven Users List Subject: Re: newbie question hi Chris, I think you didnt't properly configured the compiler plugin. below an extract pom.xml file ... .. maven-compiler-plugin

Re: newbie question

2010-05-26 Thread fradj zayen
hi Chris, I think you didnt't properly configured the compiler plugin. below an extract pom.xml file ... .. maven-compiler-plugin 1.5 1.5 Regards 2010/5/26 Meeusen, Christopher W. > Hi, > > > > I'm brand new to maven, read through a f

newbie question

2010-05-26 Thread Meeusen, Christopher W.
Hi, I'm brand new to maven, read through a few books, and built a simple maven project to produce a .jar. I've installed the m2ecplipse pugin and have got it to work properly on a few simple projects. Now I'm having an issue when I try to build a more complex project, which requires at least

Re: Newbie Question

2010-02-23 Thread Jeremy Banks
Thanks for the help Baptiste. That didn't work but -Darguments=-Pversion did. Thanks for pointing me in the right direction. Cheers Jeremy Banks Development Team Lead BIS² Level 2 45 Tory Street PO Box 19204 Wellington New Zealand +64 21 686 986 On 23 February 2010 19:31, Baptiste MATHUS

Re: Newbie Question

2010-02-22 Thread Baptiste MATHUS
Hi Jeremy, The maven-release-plugin forks to do the release. So I think you have to use an additional -Dparameters="-Pversion" (See http://maven.apache.org/plugins/maven-release-plugin/prepare-mojo.html#arguments ). Be aware I'm not totally sure it will work for profiles since I never needed it,

Newbie Question

2010-02-22 Thread Jeremy Banks
Hi All I've picked up a system set up by someone else and there's an aspect of it that's not quite working properly, which I was hoping someone may be able to help me with. We're building a flex project using maven. The project has 5 modules. One of the modules has a profile that uses the maven

Re: maven+netbeans+cpp newbie question

2009-11-26 Thread Vincent Hardion
Hi Stephan, Netbeans doesn't work well with Maven and C++ project. We use the nar maven plugin to compile C++ project. Actually, we build from CLI but I use Netbeans for Java too. I think Netbeans doesn't know about "nar" package. So some editor features don't work anymore. For example, the src

Re: maven+netbeans+cpp newbie question

2009-11-26 Thread Milos Kleint
On Thu, Nov 26, 2009 at 9:53 AM, stephane ancelot wrote: > Hi, > > I have got a problem ! > > I have to use netbeans in multiproject environment. multiproject means I > have to generate a package that is composed of many C/C++ applications > executable. > > however, it looks like netbeans does n

maven+netbeans+cpp newbie question

2009-11-26 Thread stephane ancelot
Hi, I have got a problem ! I have to use netbeans in multiproject environment. multiproject means I have to generate a package that is composed of many C/C++ applications executable. however, it looks like netbeans does not support well multiproject environment. So, may be using maven will so

Re: Newbie question about defining goals

2009-09-14 Thread UseTheFork
Super thanks !!! UseTheFork -- View this message in context: http://www.nabble.com/Newbie-question-about-defining-goals-tp25428980p25433476.html Sent from the Maven - Users mailing list archive at Nabble.com. - To

Re: Newbie question about defining goals

2009-09-13 Thread David C. Hicks
group p 1.0 p some-unique-id h

Newbie question about defining goals

2009-09-13 Thread UseTheFork
emote repository R. What do I exactly need to put in my pom.xml? Thanks, UseTheFork -- View this message in context: http://www.nabble.com/Newbie-question-about-defining-goals-tp25428980p25428980.html Sent from the Maven - Users mailing list archive at Nabbl

Re: newbie question about specifying testClassesDirectory

2009-07-02 Thread Tom H
On 02/07/09 21:26, Anders Hammar wrote: The surefire plugin forks by default. Possibly there is a bug in the surefire plugin you're using (and you can't upgrade to the newest one as it requires a newer Maven version than you're using, hence my upgrade recommendation). I'm thinking that the class

Re: newbie question about specifying testClassesDirectory

2009-07-02 Thread Anders Hammar
The surefire plugin forks by default. Possibly there is a bug in the surefire plugin you're using (and you can't upgrade to the newest one as it requires a newer Maven version than you're using, hence my upgrade recommendation). I'm thinking that the class path isn't correctly passed when forking.

Re: newbie question about specifying testClassesDirectory

2009-07-02 Thread Tom H
Oh dear, maven seems to be using a different java to my eclipse installation; [t...@localhost simple]$ /usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre/bin/java -version java version "1.5.0" gij (GNU libgcj) version 4.4.0 20090506 (Red Hat 4.4.0-4) Copyright (C) 2007 Free Software Foundation, Inc. T

Re: newbie question about specifying testClassesDirectory

2009-07-02 Thread Tom H
Hi, Thanks for the reply, I've some comments in-lined below; On 02/07/09 20:09, Anders Hammar wrote: Hi, As a starter, you should probably upgrade Maven as version 2.0.4 is VERY old. You can tell from your attached output that there are newer surefire plugin versions that can't be used with M

Re: newbie question about specifying testClassesDirectory

2009-07-02 Thread Anders Hammar
Hi, As a starter, you should probably upgrade Maven as version 2.0.4 is VERY old. You can tell from your attached output that there are newer surefire plugin versions that can't be used with Maven 2.0.4. Regarding your problem: Try running with "-X" (debug) instead of "-e" and then check the outp

newbie question about specifying testClassesDirectory

2009-07-02 Thread Tom H
Hi, I am new to maven (about 2 hours in), and I am working through a tutorial that I download here; http://www.lulu.com/content/1080910 I can run the "Hello world" app under eclipse. However I am having a problem that when I run ; $ mvn -e clean package I get an error; org.apache.maven.sure

Re: Newbie question - Resuming lifecycles

2009-06-26 Thread Barrie Treloar
On Fri, Jun 26, 2009 at 10:48 PM, alexischr wrote: > > Hello everyone, > > My team has been evaluating Maven as a solution for a data-processing > pipeline. I've created a prototype of what our project would look like, and > it includes a Mojo plug-in and a custom default lifecycle. > > My question

Newbie question - Resuming lifecycles

2009-06-26 Thread alexischr
/lifecycle, if it makes a difference. Resume is an important function in our case, since the pipeline has many fail points out of our control, and some goals can take days to execute. Thank you! -- View this message in context: http://www.nabble.com/Newbie-question---Resuming-lifecycles-tp2422012

Newbie question about site

2009-04-24 Thread REMIJAN, MICHAEL J [AG/1000]
What is the best way for a site to inherit not only the site.xml from its parent but also the /src/site/resources from the parent too? I'd like to be able to share images across projects but when I run mvn site on my child projects I do not get the /src/site/resources from the parent. Is this eve

Re: Newbie Question: Dependencies among Sibling Projects?

2009-03-15 Thread Massimo Heitor
;SNAPSHOT" as a special-case in the version string? Is this behavior documented? Thanks so much for the response! -- View this message in context: http://n2.nabble.com/Newbie-Question%3A-Dependencies-among-Sibling-Projects-

Re: Newbie Question: Dependencies among Sibling Projects?

2009-03-13 Thread Wayne Fay
> It seems that I need to "install" librarya before libraryb will compile. This is correct. Unless you are running "mvn compile" from the top parent/aggregation pom. > Is there any way to define dependencies among sibling projects like this > (that are part of the same aggregation group) so that

Newbie Question: Dependencies among Sibling Projects?

2009-03-13 Thread Massimo Heitor
ebug cycle. Will Maven properly detect source changes, rebuild necessary libraries, and update the local repository? -- View this message in context: http://n2.nabble.com/Newbie-Question%3A-Dependencies-among-Sibling-Projects--tp2477109p2477109.html Sent from the maven users mailing list archive at

Re: newbie question - creating web projects

2008-07-18 Thread Wayne Fay
ny.app \ > -DartifactId=my-app > But then, of course, I don't get me src/main/resources and src/main/webapp > etc. > > How do I create a web project AND have a src/main/java created as a base > from which to develop? > -- > View this message in context: > http:/

newbie question - creating web projects

2008-07-18 Thread snakelocks
AND have a src/main/java created as a base from which to develop? -- View this message in context: http://www.nabble.com/newbie-question---creating-web-projects-tp18530489p18530489.html Sent from the Maven - Users mailing list archiv

RE: Maven newbie question

2008-05-21 Thread King, Leon C
Thanks Richard!!! -Original Message- From: Richard Chamberlain [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 21, 2008 11:06 AM To: Maven Users List Subject: RE: Maven newbie question I'm not sure what you're getting at here: 1) you got some source code that you have checke

RE: Maven newbie question

2008-05-21 Thread Richard Chamberlain
- From: King, Leon C [mailto:[EMAIL PROTECTED] Sent: 21 May 2008 15:55 To: users@maven.apache.org Subject: Maven newbie question Hi All, I have a question regarding the use of cvs and maven. I'm converting from Ant builds to maven. All of my source code is currently checked

Maven Newbie Question

2008-05-21 Thread King, Leon C
Hi All, I have a question regarding the use of cvs and maven. I'm converting from Ant builds to maven. All of my source code is currently checked into a CVS repository.How do I create a Maven project using code checked out from cvs? Are there any examples using m2eclipse? T

Maven newbie question

2008-05-21 Thread King, Leon C
Hi All, I have a question regarding the use of cvs and maven. I'm converting from Ant builds to maven. All of my source code is currently checked into a CVS repository.How do I create a Maven project using code checked out from cvs? Are there any examples using m2eclipse? Thanks,

Re: cocoon / maven 2 newbie question ...

2008-03-13 Thread Jan Torben Heuer
BWS wrote: > I exported JAVA_HOME and viola that did the trick very simply. > I thought It had to be in the pom.xml file. It can't because the pom.xml is read my maven which itself needs java... Jan - To unsubscribe, e-mail: [

Re: cocoon / maven 2 newbie question ...

2008-03-13 Thread BWS
thanks Simon, javac in the path so? ...anyway. I exported JAVA_HOME and viola that did the trick very simply. I thought It had to be in the pom.xml file. thanks again On Thu, 2008-03-13 at 21:42 +0100, simon wrote: > On Fri, 2008-03-14 at 21:02 -0800, BWS wrote: > > hello, > > > > I'm going thr

Re: cocoon / maven 2 newbie question ...

2008-03-13 Thread simon
On Fri, 2008-03-14 at 21:02 -0800, BWS wrote: > hello, > > I'm going through a cocoon tutorial but this is a maven question. > http://cocoon.apache.org/2.2/1159_1_1.html > > jdk1.6 and Maven 2 / fedora8 > > I've read through a ton of issues with this error. > "Failure executing javac, but could

Re: cocoon / maven 2 newbie question ...

2008-03-13 Thread Wayne Fay
You must be able to successfully run "javac" from your command line before attempting to execute "mvn". Make sure JAVA_HOME is set and that it is in your PATH. Symlinks should not matter. Wayne On 3/15/08, BWS <[EMAIL PROTECTED]> wrote: > hello, > > I'm going through a cocoon tutorial but this is

cocoon / maven 2 newbie question ...

2008-03-13 Thread BWS
hello, I'm going through a cocoon tutorial but this is a maven question. http://cocoon.apache.org/2.2/1159_1_1.html jdk1.6 and Maven 2 / fedora8 I've read through a ton of issues with this error. "Failure executing javac, but could not parse the error:" when using jdk 1.4 and switching to 1.5 bu

Re: Maven1 Project.xml. Does it have a DTD? Newbie question

2008-03-12 Thread Lukas Theussl
The maven 1 pom is explained here [1] and there is an xsd available there [2]. As you see, id is not a valid tag for a contributor (the developer id is an scm id, so it's pointless for a contributor), and contrary to m1.0, the parser in maven 1.1 enforces the rules. HTH, -Lukas [1] http://mav

Maven1 Project.xml. Does it have a DTD? Newbie question

2008-03-12 Thread JG Flowers
m/Maven1-Project.xml.-Does-it-have-a-DTD--Newbie-question-tp16012546s177p16012546.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Newbie Question. Handling the module dependencies

2008-03-05 Thread Wayne Fay
gt; >> is what I have. > >> > >> > >> > >> > >> foo > >> foo-utils > >> ${project.version} > >> compile > >> > >> > >> > >> Is there anything else that I can do otherwise? > >>

Re: Newbie Question. Handling the module dependencies

2008-03-05 Thread krishnan.1000
t; >> >> >> foo >> foo-utils >> ${project.version} >> compile >> >> >> >> Is there anything else that I can do otherwise? >> >> Thanks, >> >> Karthik >> -- >> View this message in context: >> http://

Re: Newbie Question. Handling the module dependencies

2008-03-05 Thread Wayne Fay
t; compile > > > > Is there anything else that I can do otherwise? > > Thanks, > > Karthik > -- > View this message in context: > http://www.nabble.com/Newbie-Question.-Handling-the-module-dependencies-tp15855637s177p15855637.html > Sent from the Maven - Users mailing l

Newbie Question. Handling the module dependencies

2008-03-05 Thread krishnan.1000
do otherwise? Thanks, Karthik -- View this message in context: http://www.nabble.com/Newbie-Question.-Handling-the-module-dependencies-tp15855637s177p15855637.html Sent from the Maven - Users mailing list archive at Nabble.com.

RE: Local Maven repository. Newbie question...

2008-02-12 Thread simon
told me about to make this possible. > > Try to run Maven, and see if it autocreates the directory. > > > > ~Dan Allen > > > > -Original Message- > > From: JG Flowers [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, February 12, 2008 1:32 PM > > To

RE: Local Maven repository. Newbie question...

2008-02-12 Thread Allen, Daniel
t: Tuesday, February 12, 2008 2:05 PM To: users@maven.apache.org Subject: RE: Local Maven repository. Newbie question... Argh!!! It's a Windows Explorer thing.. :-U Can name a directory with . prefix with md from command prompt... Still directory has no repositoty in it. But reading on a bit further

RE: Local Maven repository. Newbie question...

2008-02-12 Thread JG Flowers
Try to run Maven, and see if it autocreates the directory. > > ~Dan Allen > > -Original Message- > From: JG Flowers [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 12, 2008 1:32 PM > To: users@maven.apache.org > Subject: Local Maven repository. Newbie ques

Re: Local Maven repository. Newbie question...

2008-02-12 Thread Wayne Fay
; something magical that they never told me about to make this possible. > Try to run Maven, and see if it autocreates the directory. > > ~Dan Allen > > -Original Message- > From: JG Flowers [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 12, 2008 1:32 PM > To: us

RE: Local Maven repository. Newbie question...

2008-02-12 Thread Allen, Daniel
rs@maven.apache.org Subject: Local Maven repository. Newbie question... Reading Better Builds with Maven. from Devzuz It says on page 32 "When you install and run Maven for the first time, it will create your local repository and populate it with artifacts as a result of dependency requests. B

Local Maven repository. Newbie question...

2008-02-12 Thread JG Flowers
ou are just specifying an extension. Have done the install. When I run mvn --version it says everything's ok. So where is my repository? The last thing booksays is you must have local repository for Maven to work. Confused.. You bet :confused: Any -- View this message in context: http://www.n

Re: add dependency (newbie question) ?

2007-11-14 Thread Giancarlo Degani
I think that the following link can help you: http://maven.apache.org/guides/getting-started/index.html#How_do_I_use_external_dependencies Giancarlo 2007/11/14, Nicola Benaglia <[EMAIL PROTECTED]>: > Hi ! > This is my first partecipation at this mailing listand obviously > with a very simple

add dependency (newbie question) ?

2007-11-14 Thread Nicola Benaglia
Hi ! This is my first partecipation at this mailing listand obviously with a very simple question. I need to add a postgres jdbc dependency to maven. Googling I found these lines to add to pom.xml: postgresql postgresql 8.1-407.jdbc3 http://www.postgresql.org/ It wo

Re: Newbie question on deployment strategy

2007-10-24 Thread Wayne Fay
Generally yes this means a complete undeploy plus deploy of the new war, unless you've got some special J2EE server that does it another way. Schedule downtime or find a low-usage time to push your WARs, just like everybody else. Ideally you're not pushing updates out to Prod on a daily basis but

Re: Newbie question on deployment strategy

2007-10-24 Thread Ross Mcdonald
Hi, thanks for that, I am trying to get my head into this method of working.. I am just a little worried about having to reload a war each time, doesn't that require complete reloading of the war in the web server, which is perhaps too much of an interruption to a production application in so

Re: Newbie question on deployment strategy

2007-10-24 Thread Nick Stolwijk
Normally, even with a few updated files, you would release your project again. Then it will create a new version number, a tag and the final artifacts, like jars and wars. This has nothing to do with how you deploy it to production. The deployment Maven talks about is deploying the artifacts to

Newbie question on deployment strategy

2007-10-24 Thread Ross Mcdonald
Hi all, I am a newbie to this, carefully considering bringing Maven in house to our small company to improve a number of different systems. I have downloaded a couple of ebooks which are great, and I see many ways in which Maven will make life easier, I am however finding it difficult to tra

Re: Very newbie question

2007-10-16 Thread Gisbert Amm
I know that i have to create an archetype.xml, pom.xml, ... but where i have to saved all these files? in .m2? where are stored archetypes? Thanks -- View this message in context: http://www.nabble.com/Very-newbie-question-tf4628024s177.html#a13214344

Re: Very newbie question

2007-10-15 Thread ichasco
rote: >> > > > >> > > > >> > > > Hi all, >> > > > >> > > > I have just started with maven and i have some questions. I have >> read >> > the >> > > >

Re: Very newbie question

2007-10-15 Thread Wayne Fay
0/15/07, ichasco <[EMAIL PROTECTED]> wrote: > > > > > > > > > > > > Hi all, > > > > > > > > I have just started with maven and i have some questions. I have read > > the > > > > guide to creating archetype and i do not understa

Re: Very newbie question

2007-10-15 Thread Harlan Iverson
t; > > > > I know that i have to create an archetype.xml, pom.xml, ... but where > i > > > have > > > to saved all these files? in .m2? where are stored archetypes? > > > > > > Thanks > > > > > > > > > -- > > > Vi

Re: Very newbie question

2007-10-15 Thread Wayne Fay
with maven and i have some questions. I have read the > > guide to creating archetype and i do not understand very well it. > > > > I know that i have to create an archetype.xml, pom.xml, ... but where i > > have > > to saved all these files? in .m2? where are

Re: Very newbie question

2007-10-15 Thread Harlan Iverson
e i > have > to saved all these files? in .m2? where are stored archetypes? > > Thanks > > > -- > View this message in context: > http://www.nabble.com/Very-newbie-question-tf4628024s177.html#a1

Very newbie question

2007-10-15 Thread ichasco
-- View this message in context: http://www.nabble.com/Very-newbie-question-tf4628024s177.html#a13214344 Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Newbie question: including a jar in maven

2007-08-26 Thread Dennis Lundberg
Arrowx7 wrote: Hello, I'm new to maven I wanted to include the hibernate jar so I can import classes like: import org.springframework.orm.hibernate3.HibernateCallback; I know I have to add something to the pom.xml files, but I'm not sure what. Is it the hibernate plugin for maven? Can someone

Newbie question: including a jar in maven

2007-08-26 Thread Arrowx7
me in the right direction? -- View this message in context: http://www.nabble.com/Newbie-question%3A-including-a-jar-in-maven-tf4331215s177.html#a12335154 Sent from the Maven - Users mailing list archive at Nabble.com. - To unsu

Re: Newbie question 1

2007-06-05 Thread Maria Odea Ching
m: Maria Odea Ching [mailto:[EMAIL PROTECTED] Sent: Sunday, June 03, 2007 11:39 PM To: [EMAIL PROTECTED] Subject: Re: Newbie question 1 Hi, Which version of archiva are you using? archiva-0.9-alpha-2 or did you build from trunk? -Deng Chris Helck wrote: Hi, I'm confused. I've adde

RE: Newbie question 1

2007-06-04 Thread Chris Helck
I guess from the trunk: archiva-1.0-alpha-1-SNAPSHOT. -Chris -Original Message- From: Maria Odea Ching [mailto:[EMAIL PROTECTED] Sent: Sunday, June 03, 2007 11:39 PM To: [EMAIL PROTECTED] Subject: Re: Newbie question 1 Hi, Which version of archiva are you using? archiva-0.9-alpha-2

Newbie Question 2

2007-06-01 Thread Chris Helck
Hi, How do I make maven use Archiva to fetch things from the central repo? Thanks, Christopher Helck ** This communication and all information (including, but not limited to, market prices/levels and data) contained therein (t

Newbie question 1

2007-06-01 Thread Chris Helck
Hi, I'm confused. I've added a managed repository that points to one of our in house repos. I delete my .m2/repository and was able to rebuild a project. Yet, if I click on the "scan repository now" button it says that it has zero files. I assumed that archiva would cache stuff that it downloads.

Re: (newbie question) seding war somewhere else

2007-05-10 Thread Wayne Fay
Another option of course is to use the Cargo Maven2 plugin for your deployment. Depending on your container, this may be a better approach. Wayne On 5/10/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Arrowx7 <[EMAIL PROTECTED]> wrote on 05/10/2007 12:16:04 PM: > > I have mevenide2 installed

Re: (newbie question) seding war somewhere else

2007-05-10 Thread Greg_Vaughn
Arrowx7 <[EMAIL PROTECTED]> wrote on 05/10/2007 12:16:04 PM: > > I have mevenide2 installed, and when I run lifecycle phase "install" > one of the output lines is > [INFO]Installing /root/sourcecode/myproject.war to > /root/.m2/repository/org/myproject.war > > is there a way to get it to instal

Re: (newbie question) seding war somewhere else

2007-05-10 Thread Arrowx7
how do I change the deployment location?? nhoj_p wrote: > > The common approache is to use deploy to get the war to the 'deployment' > location. Install is just to install into your local repository so its > avaliable to other projects your working on. > > On 10/05/07, Arrowx7 <[EMAIL PROTECT

Re: (newbie question) seding war somewhere else

2007-05-10 Thread John Patrick
The common approache is to use deploy to get the war to the 'deployment' location. Install is just to install into your local repository so its avaliable to other projects your working on. On 10/05/07, Arrowx7 <[EMAIL PROTECTED]> wrote: Hello, I have mevenide2 installed, and when I run lifecyc

(newbie question) seding war somewhere else

2007-05-10 Thread Arrowx7
Hello, I have mevenide2 installed, and when I run lifecycle phase "install" one of the output lines is [INFO]Installing /root/sourcecode/myproject.war to /root/.m2/repository/org/myproject.war is there a way to get it to install somewhere other than /root/.m2/repository/... say /usr/local/tomcat

Re: A newbie question regarding mvn:site

2007-04-29 Thread Eric Redmond
Try deleting the maven-default-skin directory from you repo and try again. It may have been a bad download. Also, are you poiting to Central or a mirror? Sometimes the mirrors get out of sync (this is a known problem). Eric On 4/29/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi. I use mv

A newbie question regarding mvn:site

2007-04-29 Thread Or_Daniel
Hi. I use mvn site plugin for the 1st time. I thought this would run smoothly, however I get the following error when running "mvn site" (Maven 2.0.6): [INFO] artifact org.apache.maven.skins:maven-default-skin: checking for updates from >java.net [INFO] -

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 the

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

2007-04-17 Thread David C. Hicks
I've got a master project that contains a number of modules. I'd like to run the release:prepare goal on that master project and get the version number to filter down into the sub-projects. However, each sub-project must specify its parent, including a version number. When the release plug-i

Re: Newbie Question: How do I represent my current Ant builds with Maven?

2007-04-17 Thread Danny MacMillan
Lacoste, Dana wrote: Once again, I'm far from the right person to provide "should" answers to this, but as I understand it, maven really wants one-pom:one-target:one-build-result-file ratios. As in a single directory > should build exactly one thing. BUT I do this kind of thing in several ar

RE: Newbie Question: How do I represent my current Ant builds with Maven?

2007-04-16 Thread Lacoste, Dana
able. But it's not "the way you're supposed to do it" if that makes sense Dana Lacoste -Original Message- From: Danny MacMillan [mailto:[EMAIL PROTECTED] Sent: Friday, April 13, 2007 3:43 PM To: Maven Users List Subject: Re: Newbie Question: How do I represent my

Re: Newbie Question: How do I represent my current Ant builds with Maven?

2007-04-13 Thread Danny MacMillan
Lacoste, Dana wrote: I'm far from the expert in dealing with this, but Maven's "assembly" plugin will do what you need: make your staging area, populate it, and zip it up in the end. We do something similar: I need to produce an "autorun" CD image: we build, with each jar having its own director

RE: Newbie Question: How do I represent my current Ant builds with Maven?

2007-04-13 Thread Lacoste, Dana
acMillan [mailto:[EMAIL PROTECTED] Sent: Friday, April 13, 2007 2:42 PM To: [EMAIL PROTECTED] Subject: Newbie Question: How do I represent my current Ant builds with Maven? Hi, I've looked at Maven, read quite a bit of the documentation, and I can't figure out quite how to represent my current

Newbie Question: How do I represent my current Ant builds with Maven?

2007-04-13 Thread Danny MacMillan
Hi, I've looked at Maven, read quite a bit of the documentation, and I can't figure out quite how to represent my current typical Ant build with Maven. Hopefully someone here can help me. I write a lot of console utilities in Java. These are comprised of the original code for the utility,

Antwort: Re: Newbie question: single project spanning multiple repository locations

2007-02-26 Thread Dirk . Moebius
Thanks a lot, Jo. I'll give it a try. > You will get 4 artifacts (jars probably) representing each trunk (if they > are seperately compilable).. well, not yet, but we're working on it... Regards, Dirk. "Jo Vandermeeren" <[EMAIL PROTECTED]> schrieb am 26.02.2007 22:25:55: > hi Dirk, > > You

Re: Newbie question: single project spanning multiple repository locations

2007-02-26 Thread Jo Vandermeeren
hi Dirk, You need to define each repository location as a maven module in a pom-packaged parent project. Once you've done this, you could add the pom to continuum and it will create 5 entries: 1 for each trunk and 1 for the parent. You could easily setup continuum to enable recursive builds. Thi

Newbie question: single project spanning multiple repository locations

2007-02-26 Thread Dirk . Moebius
Hi, we have an older project that -unfortunately- spans multiple repository locations: scm:svn://ourserver.com/repositories/ABRAHAM/basis/trunk/ scm:svn://ourserver.com/repositories/ABRAHAM/dev/trunk/ scm:svn://ourserver.com/repositories/ABRAHAM/access/trunk/ scm:svn://ourserver.com/repositories

Re: Maven newbie question, problem with XDoclet destination directory

2007-02-06 Thread Pat Harms
Super POM, the output is then switched. > > Am I doing something obviously wrong? Or do I need to have two separate > Maven invocations. > > Thanks in advance, for any assistance with this issue that I am having. > > Regards > Pat Harms > > -- View this mess

Maven newbie question, problem with XDoclet destination directory

2007-02-06 Thread Patrick Harms
Hi All I'm relatively new to Maven so excuse what may seem like silly questions. At my work, I'm now working on a project that uses Maven. It has multiple components, jars, ears, wars, etc. Up until now, it had only one EJB project. It now has two EJB projects. Each project has its own POM file,

Re: Newbie question- 3rd party jars

2006-12-31 Thread Wayne Fay
open source product as ant or similar apache packages. Vipul. -Original Message- From: [EMAIL PROTECTED] on behalf of John Tolentino Sent: Sat 12/30/2006 11:48 PM To: Maven Users List Subject: Re: Newbie question- 3rd party jars On 12/31/06, Sagare, Vipul <[EMAIL PROTECTED]> wrote:

  1   2   3   >