Our application imports a couple of different Aspose libraries, so we have a total license that covers all of them. At the top of our application we have to do something like
new com.aspose.email.License().setLicense("Aspose.Total.Java.lic");
new com.aspose.imaging.License().setLicense("Aspose.Total.Java.lic");
new com.aspose.pdf.License().setLicense("Aspose.Total.Java.lic");
I would think that the license class would be in some aspose core library instead of copied into each individual module, so that it could be set once for all rather then per module. Is there something I am missing or a better way to handle this?