This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>Variable Width Sankey Link</title> | |
<style> | |
path { | |
fill: steelblue; | |
} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Lifecycle Phase Description | |
validate Validates whether project is correct and all necessary information is available to complete the build process. | |
initialize Initializes build state, for example set properties | |
generate-sources Generate any source code to be included in compilation phase. | |
process-sources Process the source code, for example, filter any value. | |
generate-resources Generate resources to be included in the package. | |
process-resources Copy and process the resources into the destination directory, ready for packaging phase. | |
compile Compile the source code of the project. | |
process-classes Post-process the generated files from compilation, for example to do bytecode enhancement/optimization on Java classes. | |
generate-test-sources Generate any test source code to be included in compilation phase. |