OpenViewerFX
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.idrsolutions</groupId> <artifactId>OpenViewerFX</artifactId> <version>7.13.31</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.idrsolutions</groupId> <artifactId>OpenViewerFX</artifactId> <name>${project.groupId}:${project.artifactId}</name> <version>7.13.31</version> <description>Open Source (LGPL) JavaFX PDF Viewer</description> <url>https://github.com/IDRSolutions/maven-OpenViewerFX-src</url> <developers> <developer> <name>IDRSolutions</name> <organization>IDRSolutions</organization> <organizationUrl>https://www.idrsolutions.com</organizationUrl> </developer> </developers> <licenses> <license> <name>LGPL license, Version 3.0</name> <url>https://www.gnu.org/licenses/lgpl.txt</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:IDRSolutions/maven-OpenViewerFX-src.git</connection> <developerConnection>scm:git:git@github.com:IDRSolutions/maven-OpenViewerFX-src.git</developerConnection> <url>git@github.com:IDRSolutions/maven-OpenViewerFX-src.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <stagingProfileId>19375019933d12</stagingProfileId> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <artifactSet> <excludes> <exclude>junit:*</exclude> <exclude>org.eclipse.birt.runtime.3_7_1:*</exclude> <exclude>bouncycastle:*</exclude> <exclude>org.hamcrest:*</exclude> <exclude>org.mozilla:*</exclude> <exclude>org.netbeans:*</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>*:core</artifact> <excludes> <exclude>META-INF/maven/**</exclude> </excludes> </filter> <filter> <artifact>*:full</artifact> <excludes> <exclude>META-INF/maven/**</exclude> </excludes> </filter> <filter> <artifact>*:javafx</artifact> <excludes> <exclude>META-INF/maven/**</exclude> </excludes> </filter> <filter> <artifact>*:lgpl-release</artifact> <excludes> <exclude>META-INF/maven/**</exclude> </excludes> </filter> <filter> <artifact>*:OpenViewerFX</artifact> <excludes> <exclude>META-INF/maven/**</exclude> </excludes> </filter> <filter> <artifact>*:viewer</artifact> <excludes> <exclude>META-INF/maven/**</exclude> </excludes> </filter> </filters> <transformers> <transformer> <manifestEntries> <author>IDRsolutions</author> <copyright>IDRsolutions ltd</copyright> <Main-Class>org.jpedal.examples.viewer.FXStartup</Main-Class> <Build-Date>${timestamp}</Build-Date> <Build-Number>${project.version}</Build-Number> <Trusted-Library>true</Trusted-Library> <Built-By>IDRsolutions</Built-By> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <timestamp>${maven.build.timestamp}</timestamp> <maven.compiler.source>1.8</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format> <maven.compiler.target>1.8</maven.compiler.target> </properties> </project>