何时在maven pom.xml中使用<build>插件?

时间:2017-02-16 12:40:43

标签: maven pom.xml

在我们的项目中,我们在pom中配置了jetty内置构建插件,我想了解pom中的配置设置/我们可以在pom中配置的内容。

什么是pom中的<build><plugin>部分,何时使用。

很难从教程中理解,因为许多不同的例子令人困惑。

有人可以详细解释上述内容吗?

1 个答案:

答案 0 :(得分:1)

构建部分插件标签中定义的插件将在项目构建期间执行。

有许多插件可以对您的构建做些什么。 例如,maven-compiler-plugin允许您为项目设置Java版本。

 <build>
   <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>3.6.1</version>
      <configuration>
        <source>1.8</source>
        <target>1.8</target>
      </configuration>
    </plugin>
   </plugins>
  </build>

a list of maven build plugins supported by maven itself