How to add project dependency in RAD using maven -


i have 2 projects in workspace , goal add dependency using maven. ide i'm using rad.

i have given project1 dependency in project2 pom.xml

        <dependency>             <groupid>kphc</groupid>             <artifactid>kphc</artifactid>             <version>0.0.1-snapshot</version>             <scope>compile</scope>         </dependency> 

i build project2 using

 mvn clean install 

issue:

i not able access project1 classess in project2.

i have seen couple of articles says use mvn eclipse:eclipse configure class path.

how do in rad. ?

the eclipse plugin has rad command:

mvn eclipse:rad 

it generates config files rad 6 (so check version).


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -