Skip to content

Commit af4e7f3

Browse files
authored
Merge pull request #90 from PgBulkInsert/issue-88-wrong-readme
Issue #88 Fix README
2 parents 0be9893 + 6be7586 commit af4e7f3

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,22 @@ You can add the following dependencies to your pom.xml to include [PgBulkInsert]
4040
</dependency>
4141
```
4242

43-
If you are working with Java8 you have to add a ``-jdk8`` to the package names:
43+
If you are working with Java8 you have to add a classifier ``jdk8`` to the dependencies:
4444

4545

4646
```xml
4747
<dependency>
4848
<groupId>de.bytefish.pgbulkinsert</groupId>
49-
<artifactId>pgbulkinsert-core-jdk8</artifactId>
49+
<artifactId>pgbulkinsert-core</artifactId>
5050
<version>6.0.1</version>
51+
<classifier>jdk8</classifier>
5152
</dependency>
5253

5354
<dependency>
5455
<groupId>de.bytefish.pgbulkinsert</groupId>
55-
<artifactId>pgbulkinsert-rowwriter-jdk8</artifactId>
56+
<artifactId>pgbulkinsert-rowwriter</artifactId>
5657
<version>6.0.1</version>
58+
<classifier>jdk8</classifier>
5759
</dependency>
5860
```
5961

0 commit comments

Comments
 (0)