生命周期与插件
-
项目构建生命周期
-
clean生命周期
-
default构建生命周期
site构建生命周期
-
插件简介
-
案例
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<goals>
<goal>jar</goal> <!-- 表示将Java文件夹的代码打包 -->
</goals>
<phase>generate-test-resources</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>