ironpdf-engine-windows-x64
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ironsoftware</groupId> <artifactId>ironpdf-engine-windows-x64</artifactId> <version>2025.5.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.ironsoftware</groupId> <artifactId>ironpdf-engine-windows-x64</artifactId> <version>2025.5.6</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>An IronPdfEngine binaries for a specific environment packed into a JAR's resources</description> <url>https://ironpdf.com</url> <inceptionYear>2022</inceptionYear> <organization> <name>Iron Software</name> <url>https://ironsoftware.com/</url> </organization> <licenses> <license> <name>Proprietary License</name> <url>https://ironpdf.com/java/docs/license/eula/</url> </license> </licenses> <developers> <developer> <name>Iron Software</name> <email>developers@ironsoftware.com</email> <organization>IronSoftware</organization> <organizationUrl>https://ironpdf.com/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/iron-software/IronPDF-for-Java.git</connection> <developerConnection>scm:git:ssh://github.com:iron-software/IronPDF-for-Java.git</developerConnection> <url>https://github.com/iron-software/IronPDF-for-Java</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <ironpdf.engine.version>2025.5.6</ironpdf.engine.version> </properties> <build> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.2.0</version> <configuration> <filesets> <fileset> <directory>src/main/resources</directory> <includes> <include>**</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>1.6.8</version> <executions> <execution> <id>download-win-x64-bin</id> <phase>generate-resources</phase> <goals> <goal>wget</goal> </goals> </execution> </executions> <configuration> <overwrite>true</overwrite> <url> https://ironpdfengine.azurewebsites.net/api/IronPdfEngineDownload?version=${ironpdf.engine.version}&platform=Windows&architect=x64 </url> <outputFileName>IronPdfEngine.${ironpdf.engine.version}.Windows.x64.zip</outputFileName> <unpack>false</unpack> <outputDirectory>src/main/resources </outputDirectory> </configuration> </plugin> </plugins> </build> </project>