Issue
i was wondering if it's possible to configure run as maven install in eclipse to skip unit tests, if such thing is doable, then please tell me how to do it, thanks in advance.
Solution
- Ensure Maven is configured for your project
- Right-click on your project
- Go to 'Run As'
- Select 'Run Configurations'
- In the left-hand column, right-click 'Maven Build' and select 'New'
- Select the base directory (the project) you want to build from
- Write 'install' and any other goals you want in the 'Goals' field
- Click the 'Skip Tests' radio button
- Click Run!
Hope that helps.
Answered By - Tom Elliott
Answer Checked By - Willingham (JavaFixing Volunteer)