Installation

Installing Aspose.3D for Java from Aspose Repository

Aspose hosts all Java APIs on Aspose Repository. You can easily use Aspose.3D for Java API directly in your Maven projects with simple configurations.

First you need to specify Aspose Repository configuration / location in your Maven pom.xml as below:

 <repositories>

    <repository>
        <id>AsposeJavaAPI</id>
        <name>Aspose Java API</name>
        <url>https://releases.aspose.com/java/repo/</url>
    </repository>

</repositories>

Then define Aspose.3D for Java API dependency in your pom.xml as follows:

 <dependencies>

    <dependency>
        <groupId>com.aspose</groupId>
        <artifactId>aspose-3d</artifactId>
        <version>23.11.0</version>
    </dependency>

</dependencies>

If you’re using JDK-8, you can use JDK-8 version as follows:

 <dependencies>

    <dependency>
        <groupId>com.aspose</groupId>
        <artifactId>aspose-3d</artifactId>
        <version>23.11.0</version>
        <classifier>jdk8</classifier>
    </dependency>

</dependencies>

Congratulations! You have successfully defined the Aspose.3D for Java Maven dependency in your Maven project.