You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To build **pdfHTML**, [Maven][1] must be installed.
2
+
3
+
Running install without a profile will generate the **pdfHTML** jar:
4
+
```bash
5
+
$ mvn clean install \
6
+
-Dmaven.test.skip=true \
7
+
-Dmaven.javadoc.failOnError=false \
8
+
>>(tee mvn.log)2>>(tee mvn-error.log >&2)
9
+
```
10
+
11
+
To run the tests, [Ghostscript][2] and [Imagemagick][3] must be installed.
12
+
```bash
13
+
$ mvn clean install \
14
+
-Dmaven.test.failure.ignore=false \
15
+
-DgsExec=$(which gs) \
16
+
-DcompareExec=$(which compare) \
17
+
-Dmaven.javadoc.failOnError=false \
18
+
>>(tee mvn.log)2>>(tee mvn-error.log >&2)
19
+
```
20
+
21
+
You can use the supplied `Vagrantfile` to get a [Vagrant][4] VM ([Ubuntu][5] 14.04 LTS - Trusty Tahr, with [VirtualBox][6]) with all the required software installed.
0 commit comments