Originally posted by ole
View Post
Hi Ole,
how can I check the cvs-versions?
I followed the wiki:
cvs -d
server:anonymous@www.open-xchange.com:/cvsroot/ co open-xchangethen i started ant -Dlib.dir=/opt/open-xchange/lib install an the build was successfull.
then I did the next step:
Code:
cd /installtemps/open-xchange-admin
mail:/installtemps/open-xchange-admin# ant -Dlib.dir=/opt/open-xchange/lib install
Buildfile: build.xml
replacer:
[copy] Copying 10 files to /installtemps/open-xchange-admin
[exec] /installtemps /installtemps/open-xchange-admin
[exec] /installtemps/open-xchange-admin
compile:
[javac] Compiling 119 source files to /installtemps/open-xchange-admin/classes
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/rmi/impl/OXUser.java:97: cannot find symbol
[javac] symbol : class UserConfigurationException
[javac] location: package com.openexchange.groupware
[javac] import com.openexchange.groupware.UserConfigurationException;
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/rmi/impl/OXUser.java:98: cannot find symbol
[javac] symbol : class UserConfigurationStorage
[javac] location: package com.openexchange.groupware
[javac] import com.openexchange.groupware.UserConfigurationStorage;
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/storage/mysqlStorage/OXUserMySQLStorage.java:85: cannot find symbol
[javac] symbol : class RdbUserConfigurationStorage
[javac] location: package com.openexchange.groupware
[javac] import com.openexchange.groupware.RdbUserConfigurationStorage;
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/storage/mysqlStorage/OXUserMySQLStorage.java:86: cannot find symbol
[javac] symbol : class UserConfiguration
[javac] location: package com.openexchange.groupware
[javac] import com.openexchange.groupware.UserConfiguration;
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/rmi/impl/OXUser.java:375: cannot find symbol
[javac] symbol : variable UserConfigurationStorage
[javac] location: class com.openexchange.admin.rmi.impl.OXUser
[javac] UserConfigurationStorage.getInstance().removeUserConfiguration(user_id, new ContextImpl(ctx.getId()));
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/rmi/impl/OXUser.java:376: cannot find symbol
[javac] symbol : class UserConfigurationException
[javac] location: class com.openexchange.admin.rmi.impl.OXUser
[javac] } catch (UserConfigurationException e) {
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/rmi/impl/OXUser.java:426: cannot find symbol
[javac] symbol : variable UserConfigurationStorage
[javac] location: class com.openexchange.admin.rmi.impl.OXUser
[javac] UserConfigurationStorage.getInstance().removeUserConfiguration(user.getId(), new ContextImpl(ctx.getId()));
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/rmi/impl/OXUser.java:427: cannot find symbol
[javac] symbol : class UserConfigurationException
[javac] location: class com.openexchange.admin.rmi.impl.OXUser
[javac] } catch (UserConfigurationException e) {
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/rmi/impl/OXUser.java:664: cannot find symbol
[javac] symbol : variable UserConfigurationStorage
[javac] location: class com.openexchange.admin.rmi.impl.OXUser
[javac] UserConfigurationStorage.getInstance().removeUserConfiguration(user.getId(), new ContextImpl(ctx.getId()));
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/rmi/impl/OXUser.java:665: cannot find symbol
[javac] symbol : class UserConfigurationException
[javac] location: class com.openexchange.admin.rmi.impl.OXUser
[javac] } catch (UserConfigurationException e) {
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/storage/mysqlStorage/OXUserMySQLStorage.java:1935: cannot find symbol
[javac] symbol : class UserConfiguration
[javac] location: class com.openexchange.admin.storage.mysqlStorage.OXUserMySQLStorage
[javac] final UserConfiguration user = RdbUserConfigurationStorage
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/storage/mysqlStorage/OXUserMySQLStorage.java:1935: cannot find symbol
[javac] symbol : variable RdbUserConfigurationStorage
[javac] location: class com.openexchange.admin.storage.mysqlStorage.OXUserMySQLStorage
[javac] final UserConfiguration user = RdbUserConfigurationStorage
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/storage/mysqlStorage/OXUserMySQLStorage.java:2262: cannot find symbol
[javac] symbol : class UserConfiguration
[javac] location: class com.openexchange.admin.storage.mysqlStorage.OXUserMySQLStorage
[javac] final UserConfiguration user = RdbUserConfigurationStorage
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/storage/mysqlStorage/OXUserMySQLStorage.java:2262: cannot find symbol
[javac] symbol : variable RdbUserConfigurationStorage
[javac] location: class com.openexchange.admin.storage.mysqlStorage.OXUserMySQLStorage
[javac] final UserConfiguration user = RdbUserConfigurationStorage
[javac] ^
[javac] /installtemps/open-xchange-admin/src/com/openexchange/admin/storage/mysqlStorage/OXUserMySQLStorage.java:2285: cannot find symbol
[javac] symbol : variable RdbUserConfigurationStorage
[javac] location: class com.openexchange.admin.storage.mysqlStorage.OXUserMySQLStorage
[javac] RdbUserConfigurationStorage.saveUserConfiguration(user, insert_or_update,
[javac] ^
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] 15 errors
BUILD FAILED
/installtemps/open-xchange-admin/build.xml:199: Compile failed; see the compiler error output for details.
Regards,
Jordan
Comment