5)配置環境變量web
6)驗證是否安裝成功apache
7)打開剛纔下載的Maven目錄下的conf目錄中的settings.xml文件segmentfault
鏡像內容: <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror>
<profile> <id>jdk-1.8</id> <activation> <activeByDefault>true</activeByDefault> <jdk>1.8</jdk> </activation> <properties> <maven.compiler.compilerVersion>1.8 </maven.compiler.compilerVersion> </properties> </profile> </profiles>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>29.0-jre</version> </dependency>
若是在左側的External Libraries下沒有看到導入的jar,則證實沒有導入成功windows
到這裏Maven項目就建立成功了,若是還有什麼問題或者文章中有哪塊地方錯了能夠留言或者私信我
下一篇文章中會介紹如何建立一個maven web項目maven