Intellij Idea 简明教程
Intellij Idea - Build Tools
IntelliJ 提供了一种方法来构建和打包 Java 包。它支持 Maven 和 Gradle 等外部构建工具。本章将讨论这些构建工具。
IntelliJ provides a way to build and package Java package. It supports external build tools like Maven and Gradle. This chapter discusses about these build tools.
Creating Maven Project
按照以下步骤创建 Maven 项目 −
Follow these steps to create a Maven project −
-
Navigate to File → Project.
-
Select Maven option and click on Next button.
-
In the new project window enter tutorialspoint.com as GroupId and HelloWorld as ArtifactId.
-
In the New window, it will open the pom.xml file.
-
We need to add properties to this file; the final pom.xml file should look like this −
<?xml version = "1.0" encoding = "UTF-8"?>
<project xmlns = "http://maven.apache.org/POM/4.0.0"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation = "http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.tutorialspoing</groupId>
<artifactId>HelloWorld</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
</project>
现在,让我们在 Maven 项目的 src/main/java 目录内创建一个 Java 类。按照以下步骤创建该类 −
Now, let us create a Java class inside the src/main/java directory of the Maven project. Follow these steps to create the class −
-
Navigate to the src/main/java directory.
-
Right click on it and select New → Java Class.
按照以下步骤使用 Maven 编译此类 −
Follow these steps to compile this class using Maven −
-
Navigate to Run → Edit Configuration.
-
Click on the green plus icon and select the Maven option from the dropdown menu.
-
Enter the project name as Maven-Package.
-
Provide package as the command line.
-
Click on the OK button.
-
Navigate to Run and select the Maven-Package option.
-
It will start building package. Upon successful building of the package, you will see the following result −
Create Gradle Project
在本节中,我们将学习如何创建 Gradle 项目 −
In this section, we will learn how to create a Gradle project −
-
Navigate to File → Project and select Gradle.
-
Click on the Next button.
-
In the new project window, enter tutorialspoint as GroupId and HelloWorld as ArtifactId.
-
Click on the Next button, verify the project details and click on the Finish button.
-
Follow the on-screen instructions to complete the process.
-
Open the buildl.gradle file and write Hello task as shown in the above screenshot.
-
To compile this task, navigate to the Run → Build-Gradle option.