Checking core structure...
compile_project:10: no matches found: *.in
rm -f poof-core.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 `find . -name \*.java`)
./poof/core/FileSystem.java:6: error: package ist.po.ui does not exist (cannot be used in the core project)
import static ist.po.ui.Dialog.IO; // REMOVER MAIS TARDE
                       ^
./poof/core/FileSystem.java:6: error: static import only from classes and interfaces
import static ist.po.ui.Dialog.IO; // REMOVER MAIS TARDE
^
./poof/core/SessionManager.java:2: error: package poof.textui does not exist
import poof.textui.UserUnknownException; // ISTO TEM QUE SAIR DAQUI!!!
                  ^
./poof/core/SessionManager.java:5: error: package poof.textui does not exist
import poof.textui.UserUnknownException;
                  ^
./poof/core/SessionManager.java:6: error: package poof.textui does not exist
import poof.textui.UserExistsException;
                  ^
./poof/core/SessionManager.java:7: error: package poof.textui does not exist
import poof.textui.AccessDeniedException;
                  ^
./poof/core/SessionManager.java:9: error: package ist.po.ui does not exist (cannot be used in the core project)
import static ist.po.ui.Dialog.IO; // REMOVER MAIS TARDE
                       ^
./poof/core/SessionManager.java:9: error: static import only from classes and interfaces
import static ist.po.ui.Dialog.IO; // REMOVER MAIS TARDE
^
./poof/core/SessionManager.java:93: error: cannot find symbol
	public void createUser (String username, String name) throws UserExistsException, AccessDeniedException {
	                                                             ^
  symbol:   class UserExistsException
  location: class SessionManager
./poof/core/SessionManager.java:93: error: cannot find symbol
	public void createUser (String username, String name) throws UserExistsException, AccessDeniedException {
	                                                                                  ^
  symbol:   class AccessDeniedException
  location: class SessionManager
./poof/core/SessionManager.java:67: error: cannot find symbol
		IO.println("Entrei no _wSessionManager.save(), vai ver a pasta de onde correste o programa");
		^
  symbol:   variable IO
  location: class SessionManager
./poof/core/SessionManager.java:87: error: cannot find symbol
				throw new UserUnknownException(username); // ISTO TEM QUE SAIR DAQUI!!!!
				          ^
  symbol:   class UserUnknownException
  location: class SessionManager
./poof/core/SessionManager.java:89: error: cannot find symbol
		} catch (UserUnknownException uue) { }
		         ^
  symbol:   class UserUnknownException
  location: class SessionManager
./poof/core/SessionManager.java:95: error: cannot find symbol
			throw new AccessDeniedException(name);
			          ^
  symbol:   class AccessDeniedException
  location: class SessionManager
./poof/core/SessionManager.java:98: error: cannot find symbol
			throw new UserExistsException(username);
			          ^
  symbol:   class UserExistsException
  location: class SessionManager
15 errors
make: *** [all] Error 1