标签:项目案例 依赖管理 span pom.xml 项目 结构 vat setting oca
<!-- 全局jdk配置,settings.xml --> <profile> <id>jdk18</id> <activation> <activeByDefault>true</activeByDefault> <jdk>1.8</jdk> </activation> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> </properties> </profile>
<localRepository>D:/develop/apache-maven-3.5.4/repository</localRepository>
<mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror>
mvn clean
mvn compile
mvn test
mvn package
mvn install
6 maven整合web项目案例
标签:项目案例 依赖管理 span pom.xml 项目 结构 vat setting oca
原文地址:https://www.cnblogs.com/xuweiweiwoaini/p/9611998.html