Maven - Eclipse IDE


Eclipse提供了一个优秀的插件m2eclipse,它将Maven和Eclipse无缝集成在一起。

下面列出了 m2eclipse 的一些功能 -

  • 您可以从 Eclipse 运行 Maven 目标。

  • 您可以使用 Eclipse 自己的控制台在 Eclipse 中查看 Maven 命令的输出。

  • 您可以使用 IDE 更新 Maven 依赖项。

  • 您可以从 Eclipse 内启动 Maven 构建。

  • 它基于 Maven 的 pom.xml 对 Eclipse 构建路径进行依赖管理。

  • 它从 Eclipse 工作区解析 Maven 依赖项,而无需安装到本地 Maven 存储库(要求依赖项项目位于同一工作区)。

  • 它会自动从远程 Maven 存储库下载所需的依赖项和源。

  • 它提供了用于创建新 Maven 项目、pom.xml 以及在现有项目上启用 Maven 支持的向导

  • 它提供了对远程 Maven 存储库中的依赖项的快速搜索。

安装 m2eclipse 插件

使用以下链接之一安装 m2eclipse -

网址
Eclipse 3.5(伽利略)

在 Eclipse 3.5 (Gallileo) 中安装 m2eclipse

日食 3.6(赫利俄斯)

在 Eclipse 3.6 (Helios) 中安装 m2eclipse

以下示例将帮助您利用集成 Eclipse 和 Maven 的优势。

在Eclipse中导入maven项目

  • 打开 Eclipse。

  • 选择文件 > 导入 >选项。

  • 选择 Maven 项目选项。单击“下一步”按钮。

在 Eclipse 中导入 Maven 项目。
  • 选择项目位置,即使用 Maven 创建项目的位置。我们在前面的章节中创建了一个 Java 项目消费者银行业务。转到“创建 Java 项目”一章,了解如何使用 Maven 创建项目。

  • 单击完成按钮。

在 Eclipse 中导入 Maven 项目。

现在,你可以在eclipse中看到maven项目了。

Eclipse 中的 Maven 项目。

现在,看一下消费者银行项目属性。您可以看到 Eclipse 已将 Maven 依赖项添加到 java 构建路径中。

具有 Maven 依赖项的 Java 构建路径。

现在,是时候使用 Eclipse 的 Maven 功能来构建这个项目了。

  • 右键单击 ConsumerBanking 项目以打开上下文菜单。
  • 选择作为选项运行。
  • 然后是maven包选项。

Maven 将开始构建项目。您可以在 Eclipse 控制台中看到输出,如下所示 -

[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。选择运行方式选项。然后选择Java 应用程序

使用 run as 选项运行 Maven 命令。

您将看到如下结果 -

Hello World!