随笔分类 - Maven
摘要:打开 apache-maven/conf/settings.xml 文件,添加如下的代码 <!-- 在 settings 标签上配置本地仓库的路径 --> <localRepository>E:\MavenRepository</localRepository> <!-- 在 mirrors 标签下
阅读全文
摘要:修改 maven/conf/settings.xml 文件 中的 mirror <mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/grou
阅读全文
摘要:用maven创建web项目(spring Mvc) 1、打开cmd进入到你要创建maven项目的目录下: 2、输入以下命令、然后根据提示输入相应的groupId、artifactId、version: 3、这时maven会自动帮你拉包,我这里是groupId=com.GetcharZp.demo,a
阅读全文