@alexey.noskov How to download the 25.1 apose Java Word package; we are currently using 23.8.0. Please advise what the changes need to do. do we geet new licence with 25.1 version?
@athulcp3 You can download it here:
https://releases.aspose.com/words/java/25-1/
If you are using maven, you can use the following configuration:
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://releases.aspose.com/java/repo/</url>
</repository>
..................................
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>25.1</version>
<classifier>jdk17</classifier>
</dependency>
Yes, most likely, you will need a new license. Each Aspose license provides a 1-year subscription for free upgrades to any new Aspose product version that comes out. You can download and use any Aspose product version released before the subscription expiry date.
If you want to check when your subscription expires, open the license file in Notepad (but take care not to modify and save the license file or it will no longer work) and see the SubscriptionExpiry field.
<SubscriptionExpiry>20220218</SubscriptionExpiry>
It means that you can free upgrade to version of Aspose product published before 02/18/2022.
You can use Aspose license perpetually, unless you update Aspose product to the version, which is released after the license expiration date.
@athulcp3 You can use the following code:
compile(group: 'com.aspose', name: 'aspose-words', version: '25.1')
ok thanks. working now