mvn archetype:generate -DgroupId=org.seckill -DartifactId=seckill -DarchetypeArtifactId=maven-archetype-webapp -DarchetypeCatalog=local
mvn archetype:generate -DgroupId=com.heinv.watermark -DartifactId=watermark -DarchetypeArtifactId=maven-archetype-webapp -DarchetypeCatalog=local
官网http://www.sonatype.org/nexus/ 下载最新的Nexus
nexus-2.10.0-02-bundle: 该目录包含了Nexus运行所需要的文件,如启动脚本、依赖jar包等。
sonatype-work:该目录包含Nenus生成的配置文件、日志文件、仓库文件等。
直接启动nexus,(nexus-2.10.0-02-bundle\nexus-2.10.0-02\bin\nexus.bat)
访问:
http://localhost:8081/nexus(成功访问显示,表示启动成功)
配置maven从nexus下载依赖jar
maven的配置文件为settings.xml,在下面路径中可以找到这个文件,
分别为:
$M2_HOME/conf/settings.xml:全局设置,在maven的安装目录下。 ${user.home}/.m2/settings.xml:用户设置,需要用户手动添加。
setting.xml详细配置:
1、localRepository
<!-- localRepository是设置本地仓库地址的。默认位置为: ${user.home}/.m2/repository/ -->
<!-- Windows 参考格式:<localRepository>d:/repository</localRepository> -->
<!--localRepository这个值是构建系统的本地仓库的路径。默认的值是${user.home}/.m2/repository.
如果一个系统想让所有登陆的用户都用同一个本地仓库的话,这个值是极其有用的-->
<localRepository>d:/repository</localRepository>
2、server
<server>
<!--这是Server的ID(不是登录进来的user),与Maven想要连接上的repository/mirror中的id元素相匹配-->
<id>releases</id>
<!--username,password:这两个元素成对出现,表示连接这个server需要验证username和password-->
<username>admin</username>
<password>admin123</password>
</server>
3、mirrors
<mirrors>
<mirror>
<!--id,唯一的镜像标识和用户友好的镜像名称。id被用来区分mirror元素,并且当连接时候被用来获得相应的证书-->
<id>nexus</id>
<!--镜像所包含的仓库的Id。例如,指向Maven central仓库的镜像(http://repo1.maven.org/maven2/),设置这个元素为central。
更多的高级映射例如repo1,repo2 或者*,!inhouse都是可以的。没必要一定和mirror的id相匹配。
例如:<mirrorOf> central</mirrorOf> 表示只为central仓库做镜像,如果想为所有的仓库做镜像那么可以改为--<mirrorOf>*</mirrorOf>>
<mirrorOf>*</mirrorOf>
<!--镜像基本的URL,构建系统敬将使用这个URL来连接仓库,而不是原来的仓库URL。 -->
<url>http://127.0.0.1:8081/nexus/content/groups/public/</url>
</mirror>
</mirrors>
4、repository
<repository>
<id>MyNexus</id>
<url>http://127.0.0.1:8081/nexus/content/groups/public</url>
<!-- releases、snapshots:不同的版本策略,对应发布版本和快照版本 -->
<releases>
<!-- enabled:true/false,对应类型是否激活;-->
<enabled>true</enabled>
<!-- updatePolicy:更新策略,maven将比较本地POM的时间戳(存储在仓库的maven-metadata文件中)和远端的,
配置选项可以设置:always、daily(一天一次,默认),interval:x(x为一整数,单位分钟),never; -->
<updatePolicy>daily</updatePolicy>
<!--maven部署文件到仓库时,也会部署对应的校验和文件,你可以设置:
ignore,fail或者warn用于当校验和文件不存在或者检验失败时的处理策略;-->
<checksumPolicy>warn</checksumPolicy>
</releases>
<!-- releases、snapshots:不同的版本策略,对应发布版本和快照版本 -->
<snapshots>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
IDEA 配置本地maven和本地仓库(图示IntelliJ IDEA 2016.2.3)