Installation of Aspose.Tasks for Java
Contents
[
Hide
Show
]Installing Aspose.Tasks for Java
Aspose hosts all Java APIs on Aspose Artifactory. You can easily use Aspose.Tasks for Java API directly in your Maven Projects with simple configurations.
Specify Maven Repository Configuration
First, you need to specify the Aspose Maven Repository configuration/location in your Maven pom.xml as follows:
1<repositories>
2 <repository>
3 <id>AsposeJavaAPI</id>
4 <name>Aspose Java API</name>
5 <url>https://releases.aspose.com/java/repo/</url>
6 </repository>
7</repositories>
Define Aspose.Tasks for Java API Dependency
Then define Aspose.Tasks for Java API dependency in your pom.xml as follows:
1<dependency>
2 <groupId>com.aspose</groupId>
3 <artifactId>aspose-tasks</artifactId>
4 <version>20.10</version>
5 <classifier>jdk18</classifier>
6</dependency>
After performing the above steps, Aspose.Tasks for Java dependency will finally be defined in your Maven Project.