Skip to content

Instantly share code, notes, and snippets.

@albert-hg
Created July 31, 2020 04:25
Show Gist options
  • Save albert-hg/ec4e7773ee4568b750a8f0e649a8cd5f to your computer and use it in GitHub Desktop.
Save albert-hg/ec4e7773ee4568b750a8f0e649a8cd5f to your computer and use it in GitHub Desktop.
introduction to the basic structure for the plugins
<?xml version="1.0" encoding="UTF-8"?>
<project>
<!-- 被執行於build階段的plugins會配置於此 -->
<build>
<!-- 實際執行的plugins會配置於此 -->
<plugins>
...
</plugins>
<!-- 需要被繼承的的plugins會配置在此 -->
<pluginManagement>
<plugins>
...
</plugins>
</pluginManagement>
</build>
<!-- 被執行於site階段的plugins會配置於此 -->
<reporting>
<plugins>
...
</plugins>
</reporting>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment