Quick Table of Contents

  1. Goals
  2. Transitive Dependencies
  3. settings.xml
More Articles (showing 1 below)
2010-06-22
 

Maven 2

1. Goals

    mvn clean install
    

2. Transitive Dependencies

If your project uses another project, dependencies maybe be automatically visible and packaged into your war file.

3. settings.xml

settings.xml is found in the .m2 directory of your home directory.

You can set a different repo at by specifying a different localRepository.

<settings>
  <localRepository>e:/.m2/repository</localRepository>
  ..
  

refer to http://maven.apache.org/ref/2.0.8/maven-settings/settings.html