docx4j-ImportXHTML-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.docx4j</groupId> <artifactId>docx4j-ImportXHTML-parent</artifactId> <version>11.5.0</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>org.docx4j</groupId> <artifactId>docx4j-ImportXHTML-parent</artifactId> <version>${revision}</version> <properties> <revision>11.5.0</revision> <version.docx4j>11.5.0</version.docx4j> <packaging.type>jar</packaging.type> <!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> --> <!-- github server corresponds to entry in ~/.m2/settings.xml --> <github.global.server>github</github.global.server> <version.logback-classic>1.5.6</version.logback-classic> <version.maven-jar-plugin>2.3.1</version.maven-jar-plugin> <version.maven-bundle-plugin>5.1.2</version.maven-bundle-plugin> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <packaging>pom</packaging> <name>docx4j-ImportXHTML parent</name> <modules> <module>docx4j-ImportXHTML-core</module> <!-- 2024 03 13 have to comment out the -samples module otherwise "remote staging" gets skipped? I suspect that happens if the last project has skipNexusStagingDeployMojo true --> <module>docx4j-ImportXHTML-samples</module> </modules> <description> docx4j-ImportXHTML converts XHTML to OpenXML WordML (docx) using docx4j </description> <url>http://www.docx4java.org/</url> <licenses> <license> <name>LGPL v2.1</name> <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> <distribution>repo</distribution> <comments>The same license as https://github.com/danfickle/openhtmltopdf. See legals/NOTICE for details.</comments> </license> </licenses> <scm> <developerConnection>scm:git|git@github.com:plutext/docx4j-ImportXHTML.git</developerConnection> <tag>docx4j-ImportXHTML-11.4.10</tag> <url>https://github.com/plutext/docx4j-ImportXHTML</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <inceptionYear>2013</inceptionYear> <developers> <developer> <id>jharrop</id> <name>Jason Harrop</name> <email>jharrop@plutext.com</email> <organization>Plutext</organization> <roles> <role>Developer</role> </roles> <timezone>+10</timezone> </developer> </developers> <contributors> <contributor> <name>Ivan Lozitski (ai-github)</name> </contributor> <contributor> <name>Basil Zabairatsky (bsl-zcs)</name> </contributor> <contributor> <name>Tomas Bezdek</name> </contributor> <!-- others listed in CHANGELOG.md, to be added here --> </contributors> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <versionRange>[1.0.0,)</versionRange> <goals> <goal>flatten</goal> <goal>clean</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>11</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <!-- you can run this with: mvn validate See further https://stackoverflow.com/questions/24827194/maven-enforcer-plugin-missing-or-invalid-rules 2019 05 25 should work with Java 11: https://github.com/mojohaus/extra-enforcer-rules/pull/63 but it doesn't. Seems to work with Java 12 though <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M2</version> <executions> <execution> <id>enforce-bytecode-version</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <enforceBytecodeVersion> <maxJdkVersion>11</maxJdkVersion> <excludes> <exclude>org.mindrot:jbcrypt</exclude> </excludes> </enforceBytecodeVersion> </rules> <fail>true</fail> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>extra-enforcer-rules</artifactId> <version>1.2</version> </dependency> </dependencies> </plugin> --> <plugin> <artifactId>maven-source-plugin</artifactId> <!-- The Source Plugin creates a jar archive of the source files of the current project. --> <version>3.0.1</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Maven Central REQUIRES Javadoc hiccups on org.slf4j since it is a multi-release jar broken in Java 11, fixed in Java 12 https://bugs.openjdk.java.net/browse/JDK-8222309 --> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <configuration> <maxmemory>512m</maxmemory> <additionalJOption>-Xdoclint:none</additionalJOption> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <!-- workaround for 'javadoc: error - The code being documented uses packages in the unnamed module' issue still present in Java 14! https://stackoverflow.com/a/63475569/1031689 --> <source>8</source> <detectJavaApiLink>false</detectJavaApiLink> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- <plugin> <groupId>org.basepom.maven</groupId> <artifactId>duplicate-finder-maven-plugin</artifactId> <version>1.2.0</version> <executions> <execution> <id>default</id> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <printEqualFiles>false</printEqualFiles> <failBuildInCaseOfDifferentContentConflict>true</failBuildInCaseOfDifferentContentConflict> <failBuildInCaseOfEqualContentConflict>false</failBuildInCaseOfEqualContentConflict> <failBuildInCaseOfConflict>false</failBuildInCaseOfConflict> <checkCompileClasspath>true</checkCompileClasspath> <checkRuntimeClasspath>true</checkRuntimeClasspath> <checkTestClasspath>true</checkTestClasspath> <skip>false</skip> <quiet>false</quiet> <preferLocal>true</preferLocal> <useResultFile>true</useResultFile> <resultFileMinClasspathCount>2</resultFileMinClasspathCount> <resultFile>${project.build.directory}/duplicate-finder-result.xml</resultFile> <includeBootClasspath>true</includeBootClasspath> <bootClasspathProperty>sun.boot.class.path</bootClasspathProperty> </configuration> </plugin> --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>1.0.0</version> <configuration> <!-- <updatePomFile>true</updatePomFile>--> <flattenMode>oss</flattenMode> </configuration> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.openhtmltopdf</groupId> <artifactId>openhtmltopdf-core</artifactId> <version>1.0.10</version> </dependency> <dependency> <groupId>com.openhtmltopdf</groupId> <artifactId>openhtmltopdf-pdfbox</artifactId> <version>1.0.10</version> <exclusions> <exclusion> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> </exclusion> </exclusions> </dependency> <!-- pdfbox 2.0.30 fixes java.lang.NoClassDefFoundError: Could not initialize class org.apache.pdfbox.pdmodel.font.PDType1Font at com.openhtmltopdf.pdfboxout.fontstore.AbstractFontStore$BuiltinFontStore.addCourier(AbstractFontStore.java:55) at com.openhtmltopdf.pdfboxout.fontstore.AbstractFontStore$BuiltinFontStore.createInitialFontMap(AbstractFontStore.java:43) at com.openhtmltopdf.pdfboxout.fontstore.AbstractFontStore$BuiltinFontStore.<init>(AbstractFontStore.java:38) at com.openhtmltopdf.pdfboxout.PdfBoxFontResolver.<init>(PdfBoxFontResolver.java:82) at org.docx4j.convert.in.xhtml.renderer.DocxRenderer.<init>(DocxRenderer.java:152) at org.docx4j.convert.in.xhtml.renderer.DocxRenderer.<init>(DocxRenderer.java:100) at org.docx4j.convert.in.xhtml.XHTMLImporterImpl.getRenderer(XHTMLImporterImpl.java:324) at org.docx4j.convert.in.xhtml.XHTMLImporterImpl.convert(XHTMLImporterImpl.java:753) at org.docx4j.convert.in.xhtml.DestinationAnchorTest.convert(DestinationAnchorTest.java:38) at org.docx4j.convert.in.xhtml.DestinationAnchorTest.bookmarkInTr(DestinationAnchorTest.java:142) : Caused by: java.lang.ExceptionInInitializerError: Exception java.lang.ExceptionInInitializerError [in thread "main"] at org.apache.pdfbox.pdmodel.font.FontMapperImpl.getProvider(FontMapperImpl.java:159) at org.apache.pdfbox.pdmodel.font.FontMapperImpl.findFont(FontMapperImpl.java:423) at org.apache.pdfbox.pdmodel.font.FontMapperImpl.findFontBoxFont(FontMapperImpl.java:386) at org.apache.pdfbox.pdmodel.font.FontMapperImpl.getFontBoxFont(FontMapperImpl.java:360) at org.apache.pdfbox.pdmodel.font.PDType1Font.<init>(PDType1Font.java:146) at org.apache.pdfbox.pdmodel.font.PDType1Font.<clinit>(PDType1Font.java:79) at com.openhtmltopdf.pdfboxout.fontstore.AbstractFontStore$BuiltinFontStore.addCourier(AbstractFontStore.java:55) at com.openhtmltopdf.pdfboxout.fontstore.AbstractFontStore$BuiltinFontStore.createInitialFontMap(AbstractFontStore.java:43) at com.openhtmltopdf.pdfboxout.fontstore.AbstractFontStore$BuiltinFontStore.<init>(AbstractFontStore.java:38) at com.openhtmltopdf.pdfboxout.PdfBoxFontResolver.<init>(PdfBoxFontResolver.java:82) at org.docx4j.convert.in.xhtml.renderer.DocxRenderer.<init>(DocxRenderer.java:152) at org.docx4j.convert.in.xhtml.renderer.DocxRenderer.<init>(DocxRenderer.java:100) --> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> <version>2.0.30</version> <exclusions> <!-- use org.slf4j:jcl-over-slf4j instead --> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> <exclusion> <groupId>org.apache.pdfbox</groupId> <artifactId>xmpbox</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>xmpbox</artifactId> <version>2.0.24</version> <exclusions> <!-- use org.slf4j:jcl-over-slf4j instead --> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.docx4j</groupId> <artifactId>docx4j-core</artifactId> <version>${version.docx4j}</version> </dependency> <dependency> <groupId>org.apache.james</groupId> <artifactId>apache-mime4j-core</artifactId> <version>0.8.11</version> </dependency> <!-- docx4j v11.5.0 and later use JAXB 4.0 --> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>4.0.2</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.13</version> </dependency> <!-- sample docx4j.properties specifies this --> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.12.2</version> <exclusions> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${version.logback-classic}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <profiles> <!-- use -P eg mvn -Psign-artifacts --> <profile> <id>jdk-8-config</id> <activation> <jdk>1.8</jdk> </activation> <properties> <javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable> </properties> </profile> <profile> <id>jdk-11-config</id> <activation> <jdk>[11,)</jdk> </activation> <properties> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> </properties> </profile> <profile> <id>OSGi</id> <properties> <packaging.type>bundle</packaging.type> </properties> </profile> <!-- Deploy a snapshot to GitHub See http://stackoverflow.com/questions/14013644/hosting-a-maven-repository-on-github To do this: 0. uncomment distribution management above 1. comment out parent element (top of pom), since this is what makes deploy push to https://oss.sonatype.org 2. comment out maven-javadoc-plugin, since its not worth bothering with that large upload 3. execute mvn clean deploy -Pgithub-mvn-repo --> <profile> <id>github-mvn-repo</id> <build> <plugins> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> <configuration> <altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository> </configuration> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.12</version> <configuration> <server>github</server> <merge>true</merge> <message>Maven artifacts for ${project.version}</message> <!-- git commit message --> <noJekyll>true</noJekyll> <!-- disable webpage processing --> <outputDirectory>${project.build.directory}/mvn-repo</outputDirectory> <!-- matches distribution management repository url above --> <branch>refs/heads/mvn-repo</branch> <!-- remote branch name --> <includes><include>**/*</include></includes> <repositoryName>docx4j-ImportXHTML</repositoryName> <!-- github repo name --> <repositoryOwner>plutext</repositoryOwner> <!-- github username --> </configuration> <executions> <!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase --> <execution> <goals> <goal>site</goal> </goals> <phase>deploy</phase> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <!-- The Source Plugin creates a jar archive of the source files of the current project. --> <version>3.0.1</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Maven Central REQUIRES Javadoc hiccups on org.slf4j since it is a multi-release jar broken in Java 11, fixed in Java 12 https://bugs.openjdk.java.net/browse/JDK-8222309 --> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <configuration> <maxmemory>512m</maxmemory> <additionalJOption>-Xdoclint:none</additionalJOption> <!-- workaround for 'javadoc: error - The code being documented uses packages in the unnamed module' issue still present in Java 14! https://stackoverflow.com/a/63475569/1031689 --> <source>8</source> <detectJavaApiLink>false</detectJavaApiLink> </configuration> <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>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>