Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 957b001

Browse files
committedSep 16, 2016
[RELEASE] merging 'release/7.0.1' into 'master'
2 parents ed042f3 + d85f0bc commit 957b001

File tree

1,015 files changed

+20846
-8466
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,015 files changed

+20846
-8466
lines changed
 

‎BUILDING.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,34 @@ To build iText 7, [Maven][1] must be installed.
22

33
Running install without a profile will generate the iText 7 jars:
44
```bash
5-
$ mvn clean install -Dmaven.test.skip=true | tee mvn.log
5+
$ mvn clean install \
6+
-Dmaven.test.skip=true \
7+
-Dmaven.javadoc.failOnError=false \
8+
| tee mvn.log
69
```
710

811
To run the tests, [Ghostscript][2] and [Imagemagick][3] must be installed.
912
```bash
10-
$ mvn clean install -Dmaven.test.failure.ignore=false -DgsExec=$(which gs) -DcompareExec=$(which compare) | tee mvn.log
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
1119
```
1220

1321
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.
1422
```bash
1523
$ vagrant box add ubuntu/trusty64
1624
$ vagrant up
17-
$ vagrant ssh -- 'cd /vagrant ; mvn clean install -Dmaven.test.skip=true' | tee mvn.log
25+
$ vagrant ssh -- \
26+
'cd /vagrant ; mvn clean install -Dmaven.test.skip=true -Dmaven.javadoc.failOnError=false' \
27+
| tee mvn.log
1828
```
1929

2030
[1]: http://maven.apache.org/
2131
[2]: http://www.ghostscript.com/
2232
[3]: http://www.imagemagick.org/
2333
[4]: https://www.vagrantup.com/
2434
[5]: http://www.ubuntu.com/
25-
[6]: https://www.virtualbox.org/
35+
[6]: https://www.virtualbox.org/

‎barcodes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.itextpdf</groupId>
77
<artifactId>root</artifactId>
8-
<version>7.0.0</version>
8+
<version>7.0.1</version>
99
</parent>
1010

1111
<artifactId>barcodes</artifactId>

0 commit comments

Comments
 (0)
Please sign in to comment.