java - import com.oracle.cie.common.ui.gui.AppManager causes ANT build error -


i have java 1.7 web application need use appmanager for.

it seems work fine when run locally. however, when try build using ant script - package not exist error.

here code...

import com.oracle.cie.common.ui.gui.appmanager;  properties properties = new properties();      try {         properties.load(appmanager.class.getclassloader().getresourceasstream("build.properties"));     } catch (ioexception e) {         // todo auto-generated catch block         e.printstacktrace();     } 

here error when try build using ant...

error: package com.oracle.cie.common.ui.gui not exist [javac] import com.oracle.cie.common.ui.gui.appmanager; 

any suggestions?

thanks

the package name suggests class comes jar bundled 1 of oracle's products. in case, searched maven central , confirmed not class belonging known open source jar.

you state "running locally". mean ide eclipse able compile code? assuming case suggest take peek ide settings , revise 3rd party jars used. (for example eclipse creates file within project called ".classpath" lists compile time jar dependencies).

hope helps.


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -