Manage claas in list

Manage claas in list

Hi there. 
I have a simple list 
  1.    <ul class="dropdown-menu">
  2.                                     <li class="header">Esercizio Contabile</li>
  3.                                     <li>
  4.                                          <a href="#" class="esercizio">
  5.                                             <i class="fa text-aqua"></i> 2018
  6.                                         </a>
  7.                                         <a href="#" class="esercizio">
  8.                                             <i class="fa text-aqua"></i> 2017
  9.                                         </a>
  10.                                     </li>
  11.                                     <li class="disabled">
  12.                                         <a href="#" class="esercizio">
  13.                                             <i class="fa fa-warning text-yellow"></i> 2016
  14.                                         </a>
  15.                                     </li>
  16.                                 </ul>

and I would add a class ('fa-check-circle') in  'i' when the user click on 'a' and delete all class ('fa-check-circle') in the other 'li'
Actualy I can add class, but I don't know how delete the all class. 

This is my jquery code:

  1.  $(function(){
  2.                $('.esercizio').click(function(){
  3.                   var anno = $(this).text();
  4.                   $(this).find('i').addClass('fa-check-circle');
  5.                });
  6.             });
Thanks for help.