tags:

views:

140

answers:

0

I am using rmic in netbeans to generate stub and skeleton files.Herewith I have provided the tag, I'm using in "build.xml" in netbeans 6.5

<rmic base="${build.classes.dir}" classname="packageName.RmiServerClassName"/>

"RmiServerClassName" class is using some external jar files.I already have added the external jar files by using Project Properties ====> Libraries ====> Add JAR/Folder in netbeans 6.5.When compiling "RmiServerClassName" using javac (Clean and Build in netbeans) the source compiles fine.

After post compilation, when rmic tool compiles "RmiServerClassName", jar classes not found error is thrown by rmic. rmic tool is unable to detect the jar classes which I have already added via Project Properties ====> Libraries ====> Add JAR/Folder.

How can I specify the location of these JAR files to rmic tool using "rmic" tag in netbeans?