FYI, please make sure you keep the discussion on the list so everyone
can benefit and help out.

I'm not sure I understand what you are trying to do.  Looking at the
project file you posted, it seems you are trying to build the maven
project itself.  Is this correct?  If you are trying to build maven
itself then you need to look at:

http://maven.apache.org/start/bootstrap.html


Mike Gaffney

On Fri, 15 Oct 2004 05:08:53 +0100 (BST), project member
<[EMAIL PROTECTED]> wrote:
> 
> the directory strcture is : 
>   
> E:\software\Maven_1.0\bin\%HOME%\.maven\repository 
> E:\software\Maven_1.0\lib\endorsed 
> E:\software\Maven_1.0\plugins 
>   
> C:\Documents and Settings\user_1\.maven\cache 
> C:\Documents and Settings\user_1\.maven\repository 
>   
> the follwing three directories are empty : 
>   
> E:\software\Maven_1.0\target\classes 
> E:\software\Maven_1.0\target\test-classes 
> E:\software\Maven_1.0\target\test-reports 
>   
> i have a ready project in 
>   
> E:\software\TDK_2.3\webapps\my_App 
>   
> i have read the documents on apache site and according to what it was
> written there, i prepared following xml file : 
>   
> maven.xml 
> <?xml version="1.0"?>
> <project>
>   <pomVersion>3</pomVersion>
>   <id>maven</id>
>   <name>maven</name>
>   <currentVersion>1.0-SNAPSHOT</currentVersion>
>   <organization>
>     <name>Apache Software Foundation</name>
>     <url>http://jakarta.apache.org/</url>
>   </organization>
>   <inceptionYear>2001</inceptionYear>
>   <package>org.apache.maven</package>
>   <!-- Gump integration -->
>   <gumpRepositoryId>jakarta</gumpRepositoryId> 
>   <description>
>     Maven is a project management and project comprehension
>     tool. Maven is based on the concept of a project object
>     model: builds, documentation creation, site publication,
>     and distribution publication are all controlled from the
>     project object model. Maven also provides tools to
>     create source metrics, change logs based directly on
>     source repository, and source cross-references.
>   </description> 
>   <shortDescription>Java Project Management Tools</shortDescription> 
>   <url>http://maven.apache.org/</url>
>   <issueTrackingUrl>
>     http://nagoya.apache.org/scarab/servlet/scarab/
>   </issueTrackingUrl>
>   <siteAddress>jakarta.apache.org</siteAddress>
>   <siteDirectory>
>     /www/maven.apache.org/
>   </siteDirectory>
>   <distributionDirectory>
>     /www/jakarta.apache.org/builds/jakarta-turbine-maven/
>   </distributionDirectory> 
>   <repository>
>     <connection>
>       scm:cvs:pserver:[EMAIL PROTECTED]:/home/cvspublic:maven
>     </connection>
>     <url>
>       http://cvs.apache.org/viewcvs/maven/
>     </url>
>   </repository> 
>   <versions>
>     <version>
>       <id>b3</id>
>       <name>1.0-b3</name>
>       <tag>MAVEN_1_0_B3</tag>
>     </version>
>     <version>
>       <id>b4</id>
>       <name>1.0-b4</name>
>       <tag>HEAD</tag>
>     </version>
>   </versions> 
>   <mailingLists>
>     <mailingList>
>       <name>Maven User List</name>
>       <subscribe>
>         [EMAIL PROTECTED]
>       </subscribe>
>       <unsubscribe>
>         [EMAIL PROTECTED]
>       </unsubscribe>
>       <archive>
>         http://www.mail-archive.com/[EMAIL PROTECTED]/
>       </archive>
>     </mailingList>
>     <mailingList>
>       <name>Maven Developer List</name>
>       <subscribe>
>         [EMAIL PROTECTED]
>       </subscribe>
>       <unsubscribe>
>         [EMAIL PROTECTED]
>       </unsubscribe>
>       <archive>
>         http://www.mail-archive.com/[EMAIL PROTECTED]/
>       </archive>
>     </mailingList>
>   </mailingLists> 
>   <developers> 
>     <developer>
>       <name>Juancarlo Anez</name>
>       <id>juanco</id>
>       <email>[EMAIL PROTECTED]</email>
>       <organization></organization>
>     </developer> 
>     <developer>
>       <name>Stephane Bailliez</name>
>       <id>sbailliez</id>
>       <email>[EMAIL PROTECTED]</email>
>       <organization></organization>
>     </developer>
>     <developer>
>       <name>Glenn McAllister</name>
>       <id>glennm</id>
>       <email>[EMAIL PROTECTED]</email>
>       <organization>SOMA Networks, Inc.</organization>
>     </developer> 
>   </developers> 
>   <dependencies> 
>     <dependency>
>       <groupId>dom4j</groupId>
>       <artifactId>dom4j</artifactId>
>       <version>1.3</version>
>       <url>http://www.dom4j.org/</url>
>     </dependency> 
>     <dependency>
>       <groupId>bcel</groupId>
>       <artifactId>bcel</artifactId>
>       <version>5.0</version>
>       <url>http://jakarta.apache.org/bcel/</url>
>     </dependency> 
>     .
>     .
>     . 
>     <dependency>
>       <groupId>regexp</groupId>
>       <artifactId>regexp</artifactId>
>       <version>1.2</version>
>       <url>http://jakarta.apache.org/regexp/</url>
>     </dependency>
>     
>   </dependencies> 
>   <build> 
>     <nagEmailAddress>
>       [EMAIL PROTECTED]
>     </nagEmailAddress> 
>     <sourceDirectory>src/java</sourceDirectory> 
>     <unitTestSourceDirectory>src/test</unitTestSourceDirectory> 
>     <aspectSourceDirectory/> 
>     <!-- Unit test cases -->
>     <unitTest>
>       <includes>
>         <include>**/*Test.java</include>
>       </includes>
>       <excludes>
>         <exclude>**/RepositoryTest.java</exclude>
>       </excludes>
>     </unitTest>
>               
>     <!-- J A R  R E S O U R C E S -->
>     <!-- Resources that are packaged up inside the JAR file -->
>     <resources>
>       <resource>
>         <directory>${basedir}/src/resources/misc</directory>
>         <includes>
>           <include>*.xsd</include>
>         </includes>
>       </resource>
>       <resource>
>         <directory>${basedir}/src/resources/logging</directory>
>         <includes>
>           <include>log4j.properties</include>
>         </includes>
>       </resource>
>     </resources>
>   </build>
> </project> 
>   
>   
> thanks a lot for spending so much time for me . i am a fresher and depending
> lot on websites and mailing lists. i know you too are quite a busy soul. but
> any suggesstion from you is of great help : ) . 
> sorry for the trouble : ) . 
>  
> 
> ________________________________
>  Yahoo! Messenger - Communicate instantly..."Ping" your friends today! 
> Download Messenger Now 
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to