I have following EJB classes - Company.java - the remote interface CompanyHome.java - the home interface CompanyBean.java - the implementation class now, the CompanyBean.java extends BeanBase.java When I run ejbjar task with ant, it builds the jar fine, but it also adds BeanBase.class to the jar file. I have a problem with that because that class is part of another base jar file and I don't want to have multiple copies of the class in multiple jar files. Is there something I can do for ant to avoid putting the super class in the jar file? thanks in advance Nilesh p.s: I'm using ant 1.3 with ejbjar task with weblogic 5.1
