Skip to content

Commit b1eba15

Browse files
committed
OpenPDF 2.1.0.
1 parent 30683e2 commit b1eba15

File tree

9 files changed

+40
-10
lines changed

9 files changed

+40
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ and bugreports to this GitHub repository.
2323

2424

2525

26-
## OpenPDF version 2.0.5 released 2025-05-26
26+
## OpenPDF version 2.1.0 released 2025-06-14
2727

28-
Get version 2.0.5 here: https://github.com/LibrePDF/OpenPDF/releases/tag/2.0.5
28+
Get version 2.0.6 here: https://github.com/LibrePDF/OpenPDF/releases/tag/2.0.6
2929

3030
### Other versions
3131

@@ -58,7 +58,7 @@ Add this to your pom.xml file to use the latest version of OpenPDF:
5858
<dependency>
5959
<groupId>com.github.librepdf</groupId>
6060
<artifactId>openpdf</artifactId>
61-
<version>2.0.5</version>
61+
<version>2.1.0</version>
6262
</dependency>
6363
```
6464

openpdf-fonts-extra/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.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>2.1.0-SNAPSHOT</version>
8+
<version>2.1.0</version>
99
</parent>
1010

1111
<artifactId>openpdf-fonts-extra</artifactId>

openpdf-html/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.librepdf</groupId>
99
<artifactId>openpdf-parent</artifactId>
10-
<version>2.1.0-SNAPSHOT</version>
10+
<version>2.1.0</version>
1111
</parent>
1212

1313
<artifactId>openpdf-html</artifactId>

openpdf-kotlin/pom.xml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.librepdf</groupId>
88
<artifactId>openpdf-parent</artifactId>
9-
<version>2.1.0-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
</parent>
1111

1212
<artifactId>openpdf-kotlin</artifactId>
@@ -36,6 +36,7 @@
3636
</dependencies>
3737

3838
<build>
39+
<!-- Add support for Kotlin-only source folder -->
3940
<sourceDirectory>src/main/kotlin</sourceDirectory>
4041
<plugins>
4142
<!-- Kotlin plugin -->
@@ -60,6 +61,27 @@
6061
</execution>
6162
</executions>
6263
</plugin>
64+
65+
<!-- Javadoc plugin will generate a javadoc.jar if there's at least one .java file -->
66+
<plugin>
67+
<groupId>org.apache.maven.plugins</groupId>
68+
<artifactId>maven-javadoc-plugin</artifactId>
69+
<version>3.5.0</version>
70+
<executions>
71+
<execution>
72+
<id>attach-javadocs</id>
73+
<goals>
74+
<goal>jar</goal>
75+
</goals>
76+
<configuration>
77+
<failOnError>false</failOnError>
78+
<additionalJOption>-Xdoclint:none</additionalJOption>
79+
<!-- Add this if needed to explicitly include dummy Java source -->
80+
<sourcepath>${project.basedir}/src/main/java</sourcepath>
81+
</configuration>
82+
</execution>
83+
</executions>
84+
</plugin>
6385
</plugins>
6486
</build>
6587
</project>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package org.librepdf.kotlin;
2+
3+
/**
4+
* DummyDoc is a placeholder to generate a valid javadoc.jar
5+
*/
6+
public class DummyDoc {
7+
// Intentionally empty
8+
}

openpdf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.librepdf</groupId>
88
<artifactId>openpdf-parent</artifactId>
9-
<version>2.1.0-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
</parent>
1111

1212
<artifactId>openpdf</artifactId>

pdf-swing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.librepdf</groupId>
88
<artifactId>openpdf-parent</artifactId>
9-
<version>2.1.0-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
</parent>
1111

1212
<artifactId>pdf-swing</artifactId>

pdf-toolbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.librepdf</groupId>
88
<artifactId>openpdf-parent</artifactId>
9-
<version>2.1.0-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
</parent>
1111

1212
<artifactId>pdf-toolbox</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>2.1.0-SNAPSHOT</version> <!-- artifact.version -->
8+
<version>2.1.0</version> <!-- artifact.version -->
99
<packaging>pom</packaging>
1010

1111
<!-- please run mvn tidy:pom once in a while -->

0 commit comments

Comments
 (0)