2009-12-10 3 views

Répondre

1

Il ne semble pas être actuellement pris en charge. La méthode ne semble pas serializeProject dans Project classe pour prendre en compte cette possibilité:

public void serializeProject() { 

    try { 
     final ObjectOutputStream s = new ObjectOutputStream(new FileOutputStream(name + ".ser")); 
     try { 
      s.writeObject(this); 
      s.flush(); 
      debug("Serializing project to [" + name + ".ser]"); 
     } finally { 
      s.close(); 
     } 
    } catch (Exception e) { 
     LOG.warn("Error serializing project to [" + name + ".ser]: " 
       + e.getMessage(), e); 
    } 
} 

name est le nom du projet.

+0

Je ne vois aucun problème à soumettre une telle demande à l'équipe de CruiseControl. Ferez-vous cela? –

Questions connexes