Re: New to Maven - need help

2008-10-17 Thread Jan K
for our project.So whatever dependency we need,maven will download right?but i have some predefined dependency for my project which doesnot exist in maven.Please let me know how should i load my own dependency into maven and call it using dependency tag. Jan K wrote: Is there any possiblity

Re: New to Maven - need help

2008-10-17 Thread Jan K
the dependency in build.xml. How should i do this using maven?Also i read in a article as : maven will download the the dependency required for our project.How can i add my own dependencies in maven?please help. Jan K wrote: I am very new to maven.I have downloaded apache-maven-2.0.9.I read the doc's

Re: New to Maven - need help

2008-10-17 Thread Jan K
own site-wide repository. It will also cache dependencies pulled from the main repository and save you a little bit of network bandwidth: http://www.jfrog.org/sites/artifactory/1.2/ Dave Jan K wrote: I went through the book,i donot find any information regarding adding our own

Re: New to Maven - need help

2008-10-16 Thread Jan K
groupIdjunit/groupId artifactIdjunit/artifactId version3.8.1/version scopetest/scope /dependency /dependencies /project Please correct me.Please let me know what i am missing. Jan K wrote: I am very new to maven.I have downloaded apache-maven-2.0.9.I read

Re: New to Maven - need help

2008-10-16 Thread Jan K
? You may need to go into target/classes to see your Java class files. The free e-books linked to by Arnaud are basically considered mandatory reading for people posting on this list. If you have not read them yet, you should go do it now. Wayne On Thu, Oct 16, 2008 at 12:06 AM, Jan K

Re: New to Maven - need help

2008-10-16 Thread Jan K
command.Inside classes folder, my point is i should see the class file of Test.But instead i can see the same Test.java file in classes folder.What is going wrong? After that i placed a java file(This file prints a string) matinh wrote: On Thursday 16 October 2008 Jan K wrote: I went through

Re: New to Maven - need help

2008-10-16 Thread Jan K
Is there any possiblity of adding our own dependencies in maven? Thomas Lutz wrote: Jan K schrieb: First time i created a project using mvn archetype:create -DgroupId=com.careertales -DartifactId=careertales -DarchetypeArtifactId=maven-archetype-webapp. I got a folder structure

Re: New to Maven - need help

2008-10-16 Thread Jan K
for people posting on this list. If you have not read them yet, you should go do it now. Wayne On Thu, Oct 16, 2008 at 12:06 AM, Jan K [EMAIL PROTECTED] wrote: I able to build the project successfully.I get a target folder created.But i donot find any class files created for the project.Here

Re: New to Maven - need help

2008-10-15 Thread Jan K
What are the mandatory fields(tags) to be used for settings.xml? Arnaud HERITIER wrote: You'll have more information in : - http://www.sonatype.com/community/definitive_guide.html - http://www.exist.com/better-build-maven Arnaud On Tue, Oct 14, 2008 at 12:54 PM, Jan K [EMAIL

New to Maven - need help

2008-10-14 Thread Jan K
I am very new to maven.I have downloaded apache-maven-2.0.9.I read the doc's and installed maven. I executed the following commands in command prompt, mvn archetype:create \ -DarchetypeGroupId=org.apache.maven.archetypes \ -DgroupId=com.mycompany.app \ -DartifactId=my-app I got a folder