maven-各种
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven-各种相关的知识,希望对你有一定的参考价值。
http://www.yiibai.com/maven/maven_project_documents.html#article-start
这个教程超好用
以下是学习内容
清理目标目录(clean),然后打包项目生成 JAR(包): mvn clean package
重新清理并构建:C:\MVN\consumerBanking>mvn clean compile
内部依赖vs外部依赖:
<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>ldapjdk</groupId> <artifactId>ldapjdk</artifactId> <scope>system</scope> <version>1.0</version> <systemPath>${basedir}\src\lib\ldapjdk.jar</systemPath> </dependency> </dependencies>
创建应用程序的文档:mvn site,会在D:\testMaven\consumerBanking\target\site下生成程序说明文档
以上是关于maven-各种的主要内容,如果未能解决你的问题,请参考以下文章
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段
Jacoco和Tycho surefire的Eclipse RCP插件代码介绍
利用 SonarScanner 静态扫描 Rainbond 上的 Maven 项目