-
完整的项目构建过程包括: 清理、编译、测试、打包、集成测试、验证、部署 maven生命周期: clean:清理项目 - pre-clean :执行清理前的工作 - clean:清理上一次构建生成的所有文件 - post-clean:执行清理后的文件 default:构建项目 - compile test package install site:生成项目站点 - pre-site 在生成项目站点之前要完成的工作 - site 生成项目的站点文档 - post-site在生成项目站点后要完成的工作 - site-deploy发布生成的站点到服务器上 http://maven.apache.org/plugins/index.html 例如:source插件,打包 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <phase>package</phase> <!--绑定到的目标阶段--> <goals> <goal>jar-no-fork</goal> <!--目标方式,无分支--> </goals> </execution> </executions> <configuration> <outputDirectory>/absolute/path/to/the/output/directory</outputDirectory> <!--输出路径--> <finalName>filename-of-generated-jar-file</finalName> <attach>false</attach> </configuration> </plugin>查看全部
-
Maven 工程目录查看全部
-
还好吧!查看全部
-
groupId:该项目的开发者的域名(建议域名反写.项目的名称); artifactId:指定项目的名称(建议项目的名称-模块的名称); version:指定项目的版本;查看全部
-
archetype插件用于创建、构建简单的项目 源代码应该位于/src/main/java下; 资源代码应该位于/src/main/resources下; 测试代码应该位于/src/test下; 编译生成的class文件应该位于/target/classes下; 项目应该会产生一个JAR文件,并将生成的JAR包放在/target下。查看全部
-
Maven常用的构建命令查看全部
-
Maven简介 环境变量:M2_HOME,指向Maven的安装目录; 环境变量:Path,增加%M2_HOME%\bin;查看全部
-
问题在:http://ask.csdn.net/questions/197836查看全部
-
为什么我运行mvn compile命令之后出错了,出错代码如下: E:\code\maven01>mvn compile [INFO] Scanning for projects... [ERROR] [ERROR] Some problems were encountered while processing the POMs: [FATAL] Non-parseable POM E:\code\maven01\pom.xml: only whitespace content allowed before start tag and not \u3001 (position: START_DOCUMENT seen <?xml version="1.0" encoding="UTF-8"?>\n\u3001... @2:2) @ line 2, column 2 @ [ERROR] The build could not read 1 project -> [Help 1] [ERROR] [ERROR] The project (E:\code\maven01\pom.xml) has 1 error [ERROR] Non-parseable POM E:\code\maven01\pom.xml: only whitespace content allowed before start tag and not \u3001 (position: START_DOCUMENT seen <?xml version="1.0" encoding="UTF-8"?>\n\u3001... @2:2) @ line 2, column 2 -> [Help 2] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, pleas查看全部
-
maven课程总结查看全部
-
坐标信息查看全部
-
插件列表查看全部
-
default构建项目查看全部
-
default构建项目查看全部
-
clean清理项目查看全部
举报
0/150
提交
取消