Maven - Eclipse IDE
Eclipse 提供了一个出色的插件 m2eclipse,它将 Maven 和 Eclipse 无缝集成在一起。
下面列出了 m2eclipse 的一些功能 −
您可以从 Eclipse 运行 Maven 目标。
您可以在 Eclipse 中使用自己的控制台查看 Maven 命令的输出。
您可以使用 IDE 更新 maven 依赖项。
您可以在 Eclipse 中启动 Maven 构建。
基于 Maven 的 pom.xml 对 Eclipse 构建路径进行依赖管理。
它从 Eclipse 工作区解析 Maven 依赖项,而无需安装到本地 Maven 存储库(要求依赖项项目位于同一工作区)。
它会自动从远程 Maven 存储库下载所需的依赖项和源代码。
它提供了用于创建新的 Maven 项目 pom.xml 并在现有项目上启用 Maven 支持的向导
它提供了对远程 Maven 存储库中依赖项的快速搜索。
安装 m2eclipse 插件
使用以下链接之一安装 m2eclipse −
Eclipse | URL |
---|---|
Eclipse 3.5 (Gallileo) | |
Eclipse 3.6 (Helios) |
以下示例将帮助您利用集成 Eclipse 和 maven 的好处。
在 Eclipse 中导入一个 maven 项目
打开 Eclipse。
选择 File > Import > 选项。
选择 Maven Projects 选项。 单击下一步按钮。
选择项目位置,项目是使用 Maven 创建的。 我们在前面的章节中创建了一个 Java 项目消费者银行业务。 转到"创建 Java 项目"一章,了解如何使用 Maven 创建项目。
单击完成按钮。
现在,你可以在eclipse中看到maven项目了。
现在,看看 consumer Banking 项目属性。 您可以看到 Eclipse 已将 Maven 依赖项添加到 java 构建路径。
现在,是时候使用 Eclipse 的 maven 功能来构建这个项目了。
- 右键单击 consumerBanking 项目以打开上下文菜单。
- 选择 Run 选项。
- 然后是 maven package 选项。
Maven 将开始构建项目。 您可以在 Eclipse Console 中看到如下输出 −
[INFO] Scanning for projects... [INFO] [INFO] ----------------< com.companyname.bank:consumerBanking >---------------- [INFO] Building consumerBanking 1.0-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ consumerBanking --- [INFO] Deleting C:\MVN\consumerBanking\target [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ consumerBanking --- [WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent! [INFO] skip non existing resourceDirectory C:\MVN\consumerBanking\src\main\resources [INFO] [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ consumerBanking --- [INFO] Changes detected - recompiling the module! [WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent! [INFO] Compiling 1 source file to C:\MVN\consumerBanking\target\classes [INFO] [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ consumerBanking --- [WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent! [INFO] skip non existing resourceDirectory C:\MVN\consumerBanking\src\test\resources [INFO] [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ consumerBanking --- [INFO] Changes detected - recompiling the module! [WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent! [INFO] Compiling 1 source file to C:\MVN\consumerBanking\target\test-classes [INFO] [INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ consumerBanking --- [INFO] Surefire report directory: C:\MVN\consumerBanking\target\surefire-reports ------------------------------------------------------- T E S T S ------------------------------------------------------- Running com.companyname.bank.AppTest Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.028 sec Results : Tests run: 1, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ consumerBanking --- [INFO] Building jar: C:\MVN\consumerBanking\target\consumerBanking-1.0-SNAPSHOT.jar [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 4.663 s [INFO] Finished at: 2021-12-13T17:34:27+05:30 [INFO] ------------------------------------------------------------------------
现在,右键单击 App.java。 选择Run As选项。 然后选择 Java Application。
您将看到如下结果 −
Hello World!