You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-18Lines changed: 26 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,29 +31,37 @@ Fast, simple, reliable. HikariCP is a "zero-overhead" production ready JDBC con
31
31
32
32
### Artifacts
33
33
34
-
_Java 8 thru 11 maven artifact:_
34
+
_**Java 11+** maven artifact:_
35
35
```xml
36
-
<dependency>
37
-
<groupId>com.zaxxer</groupId>
38
-
<artifactId>HikariCP</artifactId>
39
-
<version>4.0.3</version>
40
-
</dependency>
36
+
<dependency>
37
+
<groupId>com.zaxxer</groupId>
38
+
<artifactId>HikariCP</artifactId>
39
+
<version>5.0.0</version>
40
+
</dependency>
41
+
```
42
+
_Java 8 maven artifact (*maintenance mode*):_
43
+
```xml
44
+
<dependency>
45
+
<groupId>com.zaxxer</groupId>
46
+
<artifactId>HikariCP</artifactId>
47
+
<version>4.0.3</version>
48
+
</dependency>
41
49
```
42
50
_Java 7 maven artifact (*maintenance mode*):_
43
51
```xml
44
-
<dependency>
45
-
<groupId>com.zaxxer</groupId>
46
-
<artifactId>HikariCP-java7</artifactId>
47
-
<version>2.4.13</version>
48
-
</dependency>
52
+
<dependency>
53
+
<groupId>com.zaxxer</groupId>
54
+
<artifactId>HikariCP-java7</artifactId>
55
+
<version>2.4.13</version>
56
+
</dependency>
49
57
```
50
58
_Java 6 maven artifact (*maintenance mode*):_
51
59
```xml
52
-
<dependency>
53
-
<groupId>com.zaxxer</groupId>
54
-
<artifactId>HikariCP-java6</artifactId>
55
-
<version>2.3.13</version>
56
-
</dependency>
60
+
<dependency>
61
+
<groupId>com.zaxxer</groupId>
62
+
<artifactId>HikariCP-java6</artifactId>
63
+
<version>2.3.13</version>
64
+
</dependency>
57
65
```
58
66
Or [download from here](http://search.maven.org/#search%7Cga%7C1%7Ccom.zaxxer.hikaricp).
59
67
@@ -529,8 +537,8 @@ YourKit supports open source projects with its full-featured Java Profiler. Cli
529
537
530
538
Please perform changes and submit pull requests from the ``dev`` branch instead of ``master``. Please set your editor to use spaces instead of tabs, and adhere to the apparent style of the code you are editing. The ``dev`` branch is always more "current" than the ``master`` if you are looking to live life on the edge.
0 commit comments