Installation

Make sure your machine meets the system requirements before you begin.

This article explains how to install Aspose.Words for Java on your computer.

Install Aspose.Words for Java from Maven Repository

Aspose hosts all Java APIs in Maven repository. You can easily use Aspose.Words for Java API directly in your Maven Projects with simple configurations:

  1. First, you need to specify Aspose Maven Repository configuration/location in your Maven pom.xml as shown below:
    	<repositories>
    		<repository>
    			<id>AsposeJavaAPI</id>
    			<name>Aspose Java API</name>
    			<url>https://releases.aspose.com/java/repo/</url>
    		</repository>
    	</repositories>
    	
  2. Then, define the Aspose.Words for Java API dependency in your pom.xml as follows:
    	<dependencies>
    		<dependency>
    			<groupId>com.aspose</groupId>
    			<artifactId>aspose-words</artifactId>
    			<version>22.11</version>
    			<classifier>jdk17</classifier>
    		</dependency>
    		<dependency>
    			<groupId>com.aspose</groupId>
    			<artifactId>aspose-words</artifactId>
    			<version>22.11</version>
    			<classifier>javadoc</classifier>
    		</dependency>
    	</dependencies>
    	
  3. Congratulations! You have successfully defined the Aspose.Words for Java dependency in your Maven project.

See Also