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

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,

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 nick.stolw...@gmail.com 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

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 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 at

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-05-26 Thread fradj zayen
hi Chris, I think you didnt't properly configured the compiler plugin. below an extract pom.xml file build ... plugins .. plugin artifactIdmaven-compiler-plugin/artifactId configuration source1.5/source target1.5/target /configuration /plugin

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 build ... plugins .. plugin artifactIdmaven-compiler-plugin

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 Shan Syed
, 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 build ... plugins .. plugin artifactIdmaven-compiler-plugin/artifactId configuration source1.5

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 dependency list. Most likely you are simply missing

Re: newbie question

2010-05-26 Thread fradj zayen
i totally agree with Wayne, you are missing some dependencies in your pom.xml dependencies dependency groupId/groupId artifactId/artifactId versionx.x/version /dependency /dependencies hope it helps 2010/5/26 Wayne Fay wayne...@gmail.com Getting a bunch of

RE: newbie question

2010-05-26 Thread Meeusen, Christopher W.
: 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 have

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 misunderstanding

Re: newbie question

2010-05-26 Thread Shan Syed
-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 have to configure

Re: newbie question

2010-05-26 Thread Ron Wheeler
- 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 have

Re: newbie question

2010-05-26 Thread Meeusen, Christopher W.
-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 tell it to use the .jars referenced in my build

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

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

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,

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

Re: maven+netbeans+cpp newbie question

2009-11-26 Thread Milos Kleint
On Thu, Nov 26, 2009 at 9:53 AM, stephane ancelot sance...@free.fr 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

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: 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

Newbie question about defining goals

2009-09-13 Thread UseTheFork
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 Nabble.com

Re: Newbie question about defining goals

2009-09-13 Thread David C. Hicks
build pluginManagement plugins plugin groupIdgroup/groupId artifactIdp/artifactId version1.0/version /plugin plugins pluginManagement plugins

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;

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 output.

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

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.

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
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

Newbie question - Resuming lifecycles

2009-06-26 Thread alexischr
, 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-tp24220125p24220125

Re: Newbie question - Resuming lifecycles

2009-06-26 Thread Barrie Treloar
On Fri, Jun 26, 2009 at 10:48 PM, alexischrale...@thenull.net 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.

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

Re: Newbie Question: Dependencies among Sibling Projects?

2009-03-15 Thread Massimo Heitor
for the response! -- View this message in context: http://n2.nabble.com/Newbie-Question%3A-Dependencies-among-Sibling-Projects--tp2477109p2484210.html Sent from the maven users mailing list archive at Nabble.com. - To unsubscribe

Newbie Question: Dependencies among Sibling Projects?

2009-03-13 Thread Massimo Heitor
. 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 Nabble.com

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 they

newbie question - creating web projects

2008-07-18 Thread snakelocks
/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 archive at Nabble.com

Re: newbie question - creating web projects

2008-07-18 Thread Wayne Fay
/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://www.nabble.com/newbie-question---creating-web-projects-tp18530489p18530489.html Sent from the Maven - Users mailing list archive

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?

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?

RE: Maven newbie question

2008-05-21 Thread Richard Chamberlain
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 into a CVS repository.How do I create a Maven

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 checked out from

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 but

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 a maven

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 not

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 through a

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:

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

2008-03-12 Thread JG Flowers
. Cheers. -- View this message in context: http://www.nabble.com/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

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]

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: Newbie Question. Handling the module dependencies

2008-03-05 Thread Wayne Fay
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. - To unsubscribe, e-mail: [EMAIL

Re: Newbie Question. Handling the module dependencies

2008-03-05 Thread krishnan.1000
Is there a better way to handle dependencies. In my foo-core pom.xml, this is what I have. foo foo-utils ${project.version} compile Is there anything else that I can do otherwise? Thanks, Karthik -- View this message in context: http://www.nabble.com/Newbie-Question.-Handling

Re: Newbie Question. Handling the module dependencies

2008-03-05 Thread Wayne Fay
${project.version} 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 list archive

RE: Local Maven repository. Newbie question...

2008-02-12 Thread JG Flowers
-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 question... Reading Better Builds with Maven. from Devzuz It says on page 32 When you install and run Maven

RE: Local Maven repository. Newbie question...

2008-02-12 Thread simon
] Sent: Tuesday, February 12, 2008 1:32 PM To: users@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

RE: Local Maven repository. Newbie question...

2008-02-12 Thread Allen, Daniel
, 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 it talks about

Re: Local Maven repository. Newbie question...

2008-02-12 Thread Wayne Fay
, 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 question... Reading Better Builds with Maven. from Devzuz

RE: Local Maven repository. Newbie question...

2008-02-12 Thread Allen, Daniel
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. By default, Maven creates your

Local Maven repository. Newbie question...

2008-02-12 Thread JG Flowers
-repository.-Newbie-question...-tp15439648s177p15439648.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]

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: dependency groupIdpostgresql/groupId artifactIdpostgresql/artifactId

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

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

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

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

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: Very newbie question

2007-10-16 Thread ichasco
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 Sent from the Maven - Users mailing list

Re: Very newbie question

2007-10-16 Thread Gisbert Amm
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 Sent from the Maven - Users mailing list archive at Nabble.com

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

Re: Very newbie question

2007-10-15 Thread Harlan Iverson
are stored archetypes? Thanks -- 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

Re: Very newbie question

2007-10-15 Thread Wayne Fay
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 stored archetypes? Thanks -- View this message in context: http://www.nabble.com/Very-newbie-question-tf4628024s177.html#a13214344 Sent from the Maven

Re: Very newbie question

2007-10-15 Thread Harlan Iverson
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 stored archetypes? Thanks -- View this message in context: http://www.nabble.com/Very-newbie-question-tf4628024s177.html

Re: Very newbie question

2007-10-15 Thread Wayne Fay
these files? in .m2? where are stored archetypes? Thanks -- 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

Newbie question: including a jar in maven

2007-08-26 Thread Arrowx7
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 unsubscribe, e

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

Re: Newbie question 1

2007-06-05 Thread Maria Odea Ching
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 added a managed repository that points to one of our

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

Re: Newbie question 1

2007-06-03 Thread Maria Odea Ching
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 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

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.

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

(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

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

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 PROTECTED]

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 install

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, and

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: 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 mvn

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

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

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: Newbie Question: How do I represent my current Ant builds with Maven?

2007-04-16 Thread Lacoste, Dana
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 current Ant builds with Maven? Something like: Parent\pom.xml

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,

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

2007-04-13 Thread Lacoste, Dana
-assembly-plugin/assembly.html) dist1\resources - flat files needed in your assembly, referred to in the pom Does that help? Dana Lacoste -Original Message- From: Danny MacMillan [mailto:[EMAIL PROTECTED] Sent: Friday, April 13, 2007 2:42 PM To: [EMAIL PROTECTED] Subject: Newbie

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 directory

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/

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.

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 need to

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

Re: Maven newbie question, problem with XDoclet destination directory

2007-02-06 Thread Pat Harms
to have two separate Maven invocations. Thanks in advance, for any assistance with this issue that I am having. Regards Pat Harms -- View this message in context: http://www.nabble.com/Maven-newbie-question%2C-problem-with-XDoclet-destination-directory-tf3183998s177.html#a8838761 Sent

  1   2   3   >