The project files you are using are for maven 1, they are not compatible
with maven 2.

2008/9/10 muddushafi <[EMAIL PROTECTED]>

>
> I am using Maven2  version.
> Actually, I downloaded MyEclipse6.5 version which supports maven4myeclipse.
>
> Rahman
>
>
> Mick Knutson-4 wrote:
> >
> > What version of maven are you using?
> > ---
> > Thank You…
> >
> > Mick Knutson
> > BASE Logic, inc.
> > (415) 354-4215
> >
> > Website: http://baselogic.com
> > Blog: http://baselogic.com/blog
> > BLiNC Magazine: http://blincmagazine.com
> > Linked IN: http://linkedin.com/in/mickknutson
> > DJ Mick: http://djmick.com
> > MySpace: http://myspace.com/mickknutson
> > Vacation Rental: http://tahoe.baselogic.com
> >
> >
> >
> > On Tue, Sep 9, 2008 at 11:36 AM, muddushafi <[EMAIL PROTECTED]>
> wrote:
> >
> >>
> >> Hi everyone,
> >> Please help me out on this
> >> I have a project structure as such
> >>
> >> atcc-common
> >>    |-security
> >>    |     |-src
> >>    |     |    !-java
> >>    |     |          !***.java
> >>    |     |-maven.xml
> >>    |      |- project.xml(extends ${basedir}/../project.xml)
> >>    |--maven.xml
> >>    |-project.xml(Master POM)
> >>
> >> I am trying to run maven:install on of the project.xml file(child or
> >> master)
> >> in ECLIPSE, it creates only atcc-common.jar file in the local
> repository.
> >>  atcc-common
> >>       |-common
> >>                 |1.0
> >>                     |atcc-common.jar
> >> My question is?
> >> I want to see atcc-common-security-1.3.jar file to be installed in the
> >> local
> >> repository.
> >>
> >> What should I do?
> >> I am also pasting both the files
> >>
> >> Firs the atcc-common/security/project.xml file
> >> <?xml version="1.0" encoding="UTF-8"?>
> >> <!--
> >> /*
> >>  * Copyright 2001-2004 The Apache Software Foundation.
> >>  *
> >>  * Licensed under the Apache License, Version 2.0 (the "License");
> >>  * you may not use this file except in compliance with the License.
> >>  * You may obtain a copy of the License at
> >>  *
> >>  *      http://www.apache.org/licenses/LICENSE-2.0
> >>  *
> >>  * Unless required by applicable law or agreed to in writing, software
> >>  * distributed under the License is distributed on an "AS IS" BASIS,
> >>  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
> >> implied.
> >>  * See the License for the specific language governing permissions and
> >>  * limitations under the License.
> >>  */
> >>  -->
> >> <project>
> >>   <extend>${basedir}/../project.xml</extend>
> >>    <artifactId>atcc-common-security</artifactId>
> >>    <!-- the version of maven's project object model -->
> >>    <groupId>atcc-common</groupId>
> >>    <pomVersion>3</pomVersion>
> >>    <!-- a unique name for this project -->
> >>    <id>atcc-common-security</id>
> >>    <!-- a short but descriptive name for the project -->
> >>    <name>ATCC Security</name>
> >>    <!-- The version of the project under development, e.g.
> >>       1.1, 1.2, 2.0-SNAPSHOT -->
> >>    <currentVersion>1.3.4</currentVersion>
> >>
> >>    <!-- details about the organization that 'owns' the project -->
> >>    <organization>
> >>        <name>Apache Software Foundation</name>
> >>        <url>http://www.apache.org/</url>
> >>        <logo>http://maven.apache.org/images/jakarta-logo-blue.gif
> </logo>
> >>    </organization>
> >>    <!-- the year the project started -->
> >>    <inceptionYear>2005</inceptionYear>
> >>    <package>org.atcc.common.security</package>
> >>    <logo>http://maven.apache.org/images/maven.jpg</logo>
> >>    <description>ATCC security classes.</description>
> >>    <!-- a short description of what the project does -->
> >>    <shortDescription>ATCC security classes.</shortDescription>
> >>    <!-- the project home page -->
> >>    <url>http://maven.apache.org/reference/plugins/examples/</url>
> >>
> >> <issueTrackingUrl>http://nagoya.apache.org/scarab/servlet/scarab/
> >> </issueTrackingUrl>
> >>    <siteAddress>jakarta.apache.org</siteAddress>
> >>
> >> <siteDirectory>/www/maven.apache.org/reference/plugins/examples/
> >> </siteDirectory>
> >>
> >> <distributionDirectory>/www/maven.apache.org/builds/
> >> </distributionDirectory>
> >>    <!-- the version control repository and http url for online access
> >>       the connection element has the form:
> >>       scm:<system>:<system specific connection string> -->
> >>    <repository>
> >>
> >> <connection>scm:cvs:pserver:[EMAIL PROTECTED]<[EMAIL PROTECTED]>
> :
> >> /home/cvspublic:maven-plugins/examples</connection>
> >>        <url>http://cvs.apache.org/viewcvs/maven-plugins/examples/</url>
> >>    </repository>
> >>    <!-- any mailing lists for the project -->
> >>    <!-- who the developers are for the project -->
> >>    <!-- jar files the project is dependent on -->
> >>    <dependencies>
> >>        <dependency>
> >>            <groupId>jboss</groupId>
> >>            <artifactId>jbossall-client</artifactId>
> >>            <version>3.2.3</version>
> >>            <type>jar</type>
> >>        </dependency>
> >>        <dependency>
> >>            <groupId>jboss</groupId>
> >>            <artifactId>jbosssx</artifactId>
> >>            <version>3.2.5</version>
> >>            <type>jar</type>
> >>        </dependency>
> >>        <dependency>
> >>            <groupId>rbums</groupId>
> >>            <artifactId>rbums-client</artifactId>
> >>            <version>1.2</version>
> >>            <type>jar</type>
> >>        </dependency>
> >>        <dependency>
> >>            <groupId>springframework</groupId>
> >>            <artifactId>spring</artifactId>
> >>            <version>2.0</version>
> >>            <type>jar</type>
> >>        </dependency>
> >>    </dependencies>
> >>    <!-- build information for the project -->
> >>    <build>
> >>        <nagEmailAddress>[EMAIL PROTECTED]</nagEmailAddress>
> >>        <sourceDirectory>src/java</sourceDirectory>
> >>        <!--
> >>    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
> >>    <unitTest>
> >>      <includes>
> >>        <include>**/*Test.java</include>
> >>      </includes>
> >>      <excludes>
> >>        <exclude>**/NaughtyTest.java</exclude>
> >>      </excludes>
> >>    </unitTest>
> >>                  -->
> >>        <!--
> >>    <resources>
> >>      <resource>
> >>        <directory>src/conf</directory>
> >>        <includes>
> >>          <include>*.properties</include>
> >>        </includes>
> >>      </resource>
> >>    </resources>
> >>                  -->
> >>    </build>
> >> </project>
> >>
> >> Now the atcc-common/Project.xml
> >> <?xml version="1.0" encoding="UTF-8"?>
> >> <project>
> >>    <!-- maven POM number, needed but not used -->
> >>    <pomVersion>3</pomVersion>
> >>    <!-- basic project information -->
> >>    <!-- -->
> >>
> >>    <groupId>atcc-common</groupId>
> >>    <id>common</id>
> >>    <name>ATCC Common</name>
> >>    <currentVersion>1.1</currentVersion>
> >>    <!-- -->
> >>    <!-- project management section -->
> >>    <!-- -->
> >>    <organization>
> >>        <name>IPMS - Software Projects</name>
> >>        <url>http://thumper.atcc.org/</url>
> >>    </organization>
> >>    <inceptionYear>2006</inceptionYear>
> >>    <package>org.atcc.common.*</package>
> >>    <logo>/</logo>
> >>    <description>atcc-common is a project for all common software
> >> development.</description>
> >>    <shortDescription>atcc-common</shortDescription>
> >>    <!-- internal web site for the project -->
> >>    <url>http://thumper/projects/common</url>
> >>    <!-- web server information -->
> >>    <siteAddress>thumper</siteAddress>
> >>    <siteDirectory>/wwwroot/default/projects/common</siteDirectory>
> >>    <!-- need to confirm/create this -->
> >>
> >>
> >>
> <distributionDirectory>/atcc-common/dist/${pom.artifactId}/</distributionDirectory>
> >>    <repository>
> >>        <!-- we need anoncvs for our projects -->
> >>    </repository>
> >>    <!-- no mailing lists -->
> >>    <developers>
> >>        <developer>
> >>            <name>Hong Cao</name>
> >>            <id>hongc</id>
> >>            [EMAIL PROTECTED]
> >>            <organization>ATCC - IPMS Software Projects
> >> Team</organization>
> >>            <roles>
> >>                <role>Java Developer</role>
> >>            </roles>
> >>        </developer>
> >>        <developer>
> >>            <name>Martha Weber</name>
> >>            <id>mweber</id>
> >>            [EMAIL PROTECTED]
> >>            <organization>ATCC - IPMS Software Projects
> >> Team</organization>
> >>            <roles>
> >>                <role>Java Developer</role>
> >>            </roles>
> >>        </developer>
> >>        <developer>
> >>            <name>Keith Sheridan</name>
> >>            <id>ksheridan</id>
> >>            [EMAIL PROTECTED]
> >>            <organization>ATCC - IPMS Software Projects
> >> Team</organization>
> >>        </developer>
> >>    </developers>
> >>    <!-- -->
> >>    <!-- project dependency section -->
> >>    <!-- -->
> >>    <!-- -->
> >>    <!-- project build and reports section -->
> >>    <!-- -->
> >>    <build>
> >>        <!-- do I really want this ? -->
> >>        <nagEmailAddress>[EMAIL PROTECTED]</nagEmailAddress>
> >>        <sourceDirectory>${basedir}/src/java</sourceDirectory>
> >>
> >> <unitTestSourceDirectory>${basedir}/src/test</unitTestSourceDirectory>
> >>        <unitTest>
> >>            <includes>
> >>                <include>**/Test*.java</include>
> >>            </includes>
> >>            <excludes>
> >>                <exclude>**/*Test*All.java</exclude>
> >>            </excludes>
> >>        </unitTest>
> >>        <!-- (OPTIONAL) Resources packaged inside the JAR file. -->
> >>    </build>
> >>    <!-- for now we'll build all of the reports although we should let
> the
> >> subprojects define their reports -->
> >> </project>
> >>
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/POM-extends-Master-POM.....-tp19398276p19398276.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]
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/POM-extends-Master-POM.....-tp19398276p19399362.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]
>
>


-- 
Brett Porter
Blog: http://blogs.exist.com/bporter/

Reply via email to