Error after importing license

I am testing Aspose.3D for java24.4.0, using jdk17. After importing the temporary license, an error message appears. What is the reason? How can I solve it?

I tried putting the license file directly in the same path as the jar package and specifying the file name directly, but still got an error, as shown in Figure P6.

P0.png (10.6 KB)

P1.png (74.0 KB)

P2.png (30.5 KB)

P3.png (70.7 KB)

P4.png (254.3 KB)

@xingyu11
Aspose.3D 24.4.0 relies on org.bouncycastle:bc-fips:1.0.2.3

You need to add this dependency to your project, a better way is referencing Aspose.3D from our maven repository instead of specifying jar directly, thus maven can address all dependencies used.

Example:

Add following in your pom.xml’s <dependencies> section

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

And following code to <repositories> section:

      <repository>
        <id>aspose</id>
        <name>Aspose.Releases</name>
        <url>https://releases.aspose.com/java/repo</url>
        <releases>
          <enabled>true</enabled>
        </releases>
        <snapshots>
          <enabled>false</enabled>
        </snapshots>
      </repository>