Skip to content

Commit 80bfa36

Browse files
committed
2 parents dd93ae9 + f8c176e commit 80bfa36

File tree

879 files changed

+1919
-1513
lines changed

Some content is hidden

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

879 files changed

+1919
-1513
lines changed

gnu-agpl-v3.0.md

Lines changed: 651 additions & 0 deletions

itext/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<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/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<parent>
76
<groupId>com.itextpdf</groupId>
87
<artifactId>itext-parent</artifactId>
98
<version>1.0.0</version>
10-
<relativePath></relativePath>
9+
<relativePath />
1110
</parent>
1211

1312
<artifactId>itextpdf</artifactId>
14-
<version>5.5.9</version>
13+
<version>5.5.10</version>
1514
<packaging>jar</packaging>
1615

17-
<name>iText</name>
16+
<name>iText Core</name>
1817
<description>A Free Java-PDF library</description>
1918
<url>http://itextpdf.com</url>
2019

@@ -304,7 +303,7 @@
304303
<plugin>
305304
<groupId>org.apache.maven.plugins</groupId>
306305
<artifactId>maven-javadoc-plugin</artifactId>
307-
<version>2.8</version>
306+
<version>2.10.3</version>
308307
<executions>
309308
<execution>
310309
<id>attach-sources</id>
@@ -345,6 +344,7 @@
345344
<plugin>
346345
<groupId>org.apache.maven.plugins</groupId>
347346
<artifactId>maven-javadoc-plugin</artifactId>
347+
<version>2.10.3</version>
348348
<configuration>
349349
<additionalparam>-Xdoclint:none</additionalparam>
350350
</configuration>

itext/src/main/java/com/itextpdf/awt/AsianFontMapper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/*
2-
* $Id$
32
*
43
* This file is part of the iText (R) project.
54
* Copyright (c) 1998-2016 iText Group NV

itext/src/main/java/com/itextpdf/awt/DefaultFontMapper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/*
2-
* $Id$
32
*
43
* This file is part of the iText (R) project.
54
* Copyright (c) 1998-2016 iText Group NV

itext/src/main/java/com/itextpdf/awt/FontMapper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/*
2-
* $Id$
32
*
43
* This file is part of the iText (R) project.
54
* Copyright (c) 1998-2016 iText Group NV

itext/src/main/java/com/itextpdf/awt/PdfGraphics2D.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/*
2-
* $Id$
32
*
43
* This file is part of the iText (R) project.
54
* Copyright (c) 1998-2016 iText Group NV

itext/src/main/java/com/itextpdf/awt/PdfPrinterGraphics2D.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/*
2-
* $Id$
32
*
43
* This file is part of the iText (R) project.
54
* Copyright (c) 1998-2016 iText Group NV

itext/src/main/java/com/itextpdf/awt/geom/PolylineShape.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/*
2-
* $Id$
32
*
43
* This file is part of the iText (R) project.
54
* Copyright (c) 1998-2016 iText Group NV

itext/src/main/java/com/itextpdf/awt/geom/PolylineShapeIterator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/*
2-
* $Id$
32
*
43
* This file is part of the iText (R) project.
54
* Copyright (c) 1998-2016 iText Group NV

itext/src/main/java/com/itextpdf/testutils/CompareTool.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/*
2-
* $Id$
32
*
43
* This file is part of the iText (R) project.
54
* Copyright (c) 1998-2016 iText Group NV
@@ -418,7 +417,13 @@ public void writeReportToXml(OutputStream stream) throws ParserConfigurationExce
418417

419418
public CompareTool() {
420419
gsExec = System.getProperty("gsExec");
420+
if (gsExec == null) {
421+
gsExec = System.getenv("gsExec");
422+
}
421423
compareExec = System.getProperty("compareExec");
424+
if (compareExec == null) {
425+
compareExec = System.getenv("compareExec");
426+
}
422427
}
423428

424429
private String compare(String outPath, String differenceImagePrefix, Map<Integer, List<Rectangle>> ignoredAreas) throws IOException, InterruptedException, DocumentException {

0 commit comments

Comments
 (0)