- 历史
一开始所有的代码都是C系列,后来出现了java
java只有javac的编译命令 然后出现了ant,ant模拟了c里面的makefile,ant中jar包是放在代码里面的,容易产生大量冲突
然后出现了maven,优势:私服
maven有私服,私服去连接中央仓库 maven-私服-全球中央库 - 私服搭建:Nexus
maven配置文件
maven配置
maven下的settings.xml
C/当前用户/.m2/settings.xmljar包下载
镜像:下载jar包的地址
本地仓库地址:<localRepository></localRepository>
jar包下载地址:私服地址
<mirrors> <mirror> <id> <mirrorOf> <name> <url> </mirror> </mirroes>
特殊jar包下载地址
<profiles> <profile> <id>env-dev</id> <activation> <property> <name>target-env</name> <value>dev</value> </property> </activation> <properties> <tomcatPath>/path/to/tomcat/instance</tomcatPath> </properties> </profile> </profiles>
什么都不配 去maven中央库下载
- 上传jar需要配置
<server> <!-- 用户名或者privatekey> </server>
maven介绍及配置
最新推荐文章于 2020-08-26 11:33:40 发布