Skip to content

Commit fbc000d

Browse files
committed
Merge branch 'master' into pdfbox-3.0.0
# Conflicts: # README.md # extended-tests/pom.xml # graphics2d/pom.xml # pom.xml
2 parents d6c39a3 + 82b5228 commit fbc000d

File tree

2 files changed

+29
-23
lines changed

2 files changed

+29
-23
lines changed

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ For PDFBox 2.0.x:
5656
<dependency>
5757
<groupId>de.rototor.pdfbox</groupId>
5858
<artifactId>graphics2d</artifactId>
59-
<version>0.45</version>
59+
<version>0.46</version>
6060
</dependency>
6161
```
6262

@@ -69,7 +69,7 @@ For PDFBox 3.0.x:
6969
<dependency>
7070
<groupId>de.rototor.pdfbox</groupId>
7171
<artifactId>graphics2d</artifactId>
72-
<version>3.0.3</version>
72+
<version>3.0.4</version>
7373
</dependency>
7474
```
7575

@@ -342,6 +342,11 @@ graphs
342342
## Changes
343343

344344
### PDFBox 3.x based version
345+
Version 3.0.5:
346+
- Update to PDFBox 3.0.5
347+
- Fix for out of bounds exception on transparent gradient when keyframes are missing on both ends.
348+
Thanks to @ganomi. See [#64](https://github.com/rototor/pdfbox-graphics2d/pull/64)
349+
345350
Version 3.0.3:
346351
- Update to PDFBox 3.0.4
347352
- Add osgi metadata. Thanks to @zspitzer. [#61](https://github.com/rototor/pdfbox-graphics2d/pull/61)
@@ -360,8 +365,13 @@ Version 3.0.0:
360365
---
361366
### PDFBox 2.x based version
362367

363-
Version 0.45:
368+
Version 0.46:
364369
- Upgraded PDFBox to 2.0.34
370+
- Fix for out of bounds exception on transparent gradient when keyframes are missing on both ends.
371+
Thanks to @ganomi. See [#64](https://github.com/rototor/pdfbox-graphics2d/pull/64)
372+
373+
Version 0.45:
374+
- Upgraded PDFBox to 2.0.33
365375
- Partial fix for font text rendering. Thanks to @fransbouwmans. See [#53](https://github.com/rototor/pdfbox-graphics2d/pull/53)
366376

367377
Version 0.44:

pom.xml

Lines changed: 16 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,17 @@
4444
</scm>
4545

4646
<distributionManagement>
47-
<snapshotRepository>
48-
<id>ossrh</id>
49-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
50-
</snapshotRepository>
5147
<repository>
52-
<id>ossrh</id>
53-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
48+
<id>central</id>
49+
<url>https://repo1.maven.org/maven2/</url>
5450
</repository>
5551
</distributionManagement>
5652

5753
<dependencies>
5854
<dependency>
5955
<groupId>org.apache.pdfbox</groupId>
6056
<artifactId>pdfbox</artifactId>
61-
<version>3.0.4</version>
57+
<version>3.0.5</version>
6258
</dependency>
6359
<dependency>
6460
<groupId>junit</groupId>
@@ -190,22 +186,10 @@
190186
</executions>
191187
</plugin>
192188

193-
<plugin>
194-
<groupId>org.sonatype.plugins</groupId>
195-
<artifactId>nexus-staging-maven-plugin</artifactId>
196-
<version>1.6.13</version>
197-
<extensions>true</extensions>
198-
<configuration>
199-
<serverId>ossrh</serverId>
200-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
201-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
202-
</configuration>
203-
</plugin>
204-
205189
<plugin>
206190
<groupId>org.apache.maven.plugins</groupId>
207191
<artifactId>maven-release-plugin</artifactId>
208-
<version>2.5.3</version>
192+
<version>3.1.1</version>
209193
<configuration>
210194
<autoVersionSubmodules>true</autoVersionSubmodules>
211195
<useReleaseProfile>false</useReleaseProfile>
@@ -227,6 +211,18 @@
227211
</archive>
228212
</configuration>
229213
</plugin>
214+
215+
<plugin>
216+
<groupId>org.sonatype.central</groupId>
217+
<artifactId>central-publishing-maven-plugin</artifactId>
218+
<version>0.9.0</version>
219+
<extensions>true</extensions>
220+
<configuration>
221+
<publishingServerId>central</publishingServerId>
222+
<autoPublish>true</autoPublish>
223+
</configuration>
224+
</plugin>
225+
230226
<plugin>
231227
<groupId>org.apache.felix</groupId>
232228
<artifactId>maven-bundle-plugin</artifactId>

0 commit comments

Comments
 (0)