Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue-17, iText 2.1.7 to OpenPDF 1.3.11 #53

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jasperreports/demo/samples/paragraphs/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<ant dir="../" target="print"/>
</target>

<target name="pdf" description="Generates a PDF version of the report by converting the .jrprint file using the iText version 2.1.7.">
<target name="pdf" description="Generates a PDF version of the report by converting the .jrprint file using the iText OpenPDF">
<ant dir="../" target="pdf"/>
</target>

Expand Down
2 changes: 1 addition & 1 deletion jasperreports/demo/samples/webapp-repo/ivy-lib.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<dependency org="com.fasterxml.jackson.core" name="jackson-annotations" rev="2.10.0"/>
<dependency org="com.fasterxml.jackson.core" name="jackson-core" rev="2.10.0"/>
<dependency org="com.fasterxml.jackson.core" name="jackson-databind" rev="2.10.0" conf="test->*"/>
<dependency org="com.lowagie" name="itext" rev="2.1.7.js7" conf="test->*"/>
<dependency org="com.github.librepdf" name="openpdf" rev="1.3.11" conf="test->*"/>
<dependency org="commons-beanutils" name="commons-beanutils" rev="1.9.4" conf="test->*"/>
<dependency org="commons-codec" name="commons-codec" rev="1.11" conf="test->*"/>
<dependency org="commons-collections" name="commons-collections" rev="3.2.2" conf="test->*"/>
Expand Down
2 changes: 1 addition & 1 deletion jasperreports/demo/samples/webapp/ivy-lib.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<dependencies>
<dependency org="com.fasterxml.jackson.core" name="jackson-core" rev="2.10.0"/>
<dependency org="com.fasterxml.jackson.core" name="jackson-databind" rev="2.10.0" conf="test->*"/>
<dependency org="com.lowagie" name="itext" rev="2.1.7.js7" conf="test->*"/>
<dependency org="com.github.librepdf" name="openpdf" rev="1.3.11" conf="test->*"/>
<dependency org="commons-beanutils" name="commons-beanutils" rev="1.9.4" conf="test->*"/>
<dependency org="commons-codec" name="commons-codec" rev="1.11" conf="test->*"/>
<dependency org="commons-collections" name="commons-collections" rev="3.2.2" conf="test->*"/>
Expand Down
2 changes: 1 addition & 1 deletion jasperreports/ivy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependency org="com.fasterxml.jackson.core" name="jackson-databind" rev="2.10.0" conf="compile,annotations->*"/>
<dependency org="com.github.kklisura.cdt" name="cdt-java-client" rev="2.0.0"/>
<dependency org="com.google.zxing" name="core" rev="3.4.0"/>
<dependency org="com.lowagie" name="itext" rev="2.1.7.js7"/>
<dependency org="com.github.librepdf" name="openpdf" rev="1.3.11"/>
<dependency org="commons-beanutils" name="commons-beanutils" rev="1.9.4"/>
<dependency org="commons-codec" name="commons-codec" rev="1.11" conf="test->*"/>
<dependency org="commons-collections" name="commons-collections" rev="3.2.2"/>
Expand Down
6 changes: 3 additions & 3 deletions jasperreports/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@
</exclusions>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<version>2.1.7.js7</version>
<groupId>com.github.librepdf</groupId>
<artifactId>openpdf</artifactId>
<version>1.3.11</version>
<scope>compile</scope>
<optional>false</optional>
<exclusions>
Expand Down