Skip to content

Commit e0ff6f5

Browse files
authored
Update CHANGELOG
1 parent 5f11c39 commit e0ff6f5

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,28 @@ All of this great work was done by [@jonfreedman](https://github.com/jonfreedman
3636

3737
There is a major change in how the library is released. The project now
3838
targets both Java8 and Java11. You are able to use the JDK8 version by
39-
appending "-jdk8" to the Maven Package name.
39+
using the ``jdk8`` classifier.
4040

4141
So for Java8 you have to use the following dependencies:
4242

4343
```java
4444
<dependency>
4545
<groupId>de.bytefish.pgbulkinsert</groupId>
46-
<artifactId>pgbulkinsert-core-jdk8</artifactId>
46+
<artifactId>pgbulkinsert-core</artifactId>
4747
<version>6.0.0</version>
48+
<classifier>jdk8</classifier>
4849
</dependency>
4950
<dependency>
5051
<groupId>de.bytefish.pgbulkinsert</groupId>
51-
<artifactId>pgbulkinsert-rowwriter-jdk8</artifactId>
52+
<artifactId>pgbulkinsert-rowwriter</artifactId>
5253
<version>6.0.0</version>
54+
<classifier>jdk8</classifier>
5355
</dependency>
5456
<dependency>
5557
<groupId>de.bytefish.pgbulkinsert</groupId>
56-
<artifactId>pgbulkinsert-jpa-jdk8</artifactId>
58+
<artifactId>pgbulkinsert-jpa</artifactId>
5759
<version>6.0.0</version>
60+
<classifier>jdk8</classifier>
5861
</dependency>
5962
```
6063

0 commit comments

Comments
 (0)