Config license in java application

i have uploaded jar and license file in our own repository. Then how to set the license in java application?

@farshadpalayil You should apply the license in your code:

com.aspose.words.License wordsLic = new com.aspose.words.License();
wordsLic.setLicense("C:\\Temp\\Aspose.Words.Java.lic");

Please see our documentation for more information:
https://docs.aspose.com/words/java/licensing/

You can apply the license on application start or in static constructor of the class where Aspose.Words is used.