Transferred from: http://blog.csdn.net/kqygww/article/details/12837783 shared Warehouse
http://repository.sonatype.org/content/groups/public/
http://mirrors.ibiblio.org/pub/mirrors/maven2/org/acegisecurity/
http://mvnrepository.com/
http://search.maven.org/
A private warehouse
http://repository.codehaus.org/
http://snapshots.repository.codehaus.org/
Http://people.apache.org/repo/m2-snapshot-repository
http://people.apache.org/repo/m2-incubating-repository/
Manually adding jar packages to the warehouse
@1 Chart
@2Figure
@3Figure
Take Spring-context-support-3.1.0.release.jar as an example, the groupid,artifactid,version information for this jar package has been given in the @3 diagram,
This information should not be changed when manually installed, otherwise the jar package download will fail if the Maven project is migrated. By the way, this information is posted below to facilitate comparison:
<Dependency>
<groupid> Org.springframework</groupid >
<artifactid>spring-context-support </artifactid>
<version>3.1.0.release< Span style= "COLOR: #0000ff" ></version>
</dependency>
maven Install JAR Package command is:
MVN Install:install-file-dfile=jar The position of the package-dgroupid= above the groupid-dartifactid= above the artifactid-dversion= above the version- Dpackaging=jar
For example:
The jar package I downloaded was placed in the D:\MVN directory (D:\mvn\spring-context-support-3.1.0.RELEASE.jar)
So the command I typed in cmd would be:
MVN Install:install-file-dfile=d:\mvn\spring-context-support-3.1.0.release.jar-dgroupid=org.springframework- Dartifactid=spring-context-support-dversion=3.1.0.release-dpackaging=jar
Enter to display the installation success:
Reprinted from: Http://www.blogjava.NET/fancydeepin
Go to MAVEN common warehouse address and manually add jar package to Warehouse