This commit adds significant new functionality to the Aspose_CAD_Java project: - CadToPdfPrinter.java: Enables direct printing of CAD files to PDF documents. - ParameterizedCadPrinter.java & PrintByCoordinates.java: Provide advanced printing options, allowing for parameterized and coordinate-based exports. - FindBlockCoordinates.java: A utility to locate block coordinates within CAD drawings, essential for automation. The build system has been updated (pom.xml) to include these new classes, and new run scripts have been added for easier execution. Also includes a large set of examples from the official repository. Relevant .specstory documentation has been added.
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.aspose</groupId>
|
|
<artifactId>cad-java-examples</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
<properties>
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
</properties>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.aspose</groupId>
|
|
<artifactId>aspose-cad</artifactId>
|
|
<version>20.8</version>
|
|
<classifier>javadoc</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.aspose</groupId>
|
|
<artifactId>aspose-cad</artifactId>
|
|
<version>20.9</version>
|
|
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>AsposeJavaAPI</id>
|
|
<name>Aspose Java API</name>
|
|
<url>https://repository.aspose.com/repo/</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|