@Override
 public int hashCode() {
   int result;
   result = 31 * getId().hashCode();
   result = 31 * result + license.hashCode();
   if (getRepoPath() != null) {
     result = 31 * result + getRepoPath().hashCode();
   }
   return result;
 }