--- Maven NAR Plugin --- --- Mark Donszelmann --- NAR Lifecycle The NAR lifecycle copies the default Maven lifecycle and adds native goals to its phases. The table below shows the different phases of the NAR Lifecycle and the goals (including standard maven goals) attached to them. The order is left to right, top to bottom. *------------------------+-----------------------------------------------------------+ | | | *------------------------+-----------------------------------------------------------+ | validate | <> | *------------------------+-----------------------------------------------------------+ | initialize | | *------------------------+-----------------------------------------------------------+ | generate-sources | <> | *------------------------+-----------------------------------------------------------+ | process-sources | <>, <> | *------------------------+-----------------------------------------------------------+ | generate-resources | <> | *------------------------+-----------------------------------------------------------+ | process-resources | resources, <>, <> | *------------------------+-----------------------------------------------------------+ | compile | compile, <>, <>, <> | *------------------------+-----------------------------------------------------------+ | process-classes | <> | *------------------------+-----------------------------------------------------------+ | generate-test-sources | | *------------------------+-----------------------------------------------------------+ | process-test-sources | | *------------------------+-----------------------------------------------------------+ | generate-test-resources| | *------------------------+-----------------------------------------------------------+ | process-test-resources | testResources | *------------------------+-----------------------------------------------------------+ | test-compile | testCompile | *------------------------+-----------------------------------------------------------+ | process-test-classes | <> | *------------------------+-----------------------------------------------------------+ | test | test, <> | *------------------------+-----------------------------------------------------------+ | package | <>, jar | *------------------------+-----------------------------------------------------------+ | pre-integration-test | | *------------------------+-----------------------------------------------------------+ | integration-test | <> | *------------------------+-----------------------------------------------------------+ | post-integration-test | | *------------------------+-----------------------------------------------------------+ | verify | | *------------------------+-----------------------------------------------------------+ | install | install | *------------------------+-----------------------------------------------------------+ | deploy | deploy | *------------------------+-----------------------------------------------------------+ The NAR plugin attaches the nar files it produces to the main artifact (jar) so the standard install and deploy plugins of maven do their job. The nar-assembly goal is not part of the lifestyle and should be called independently.