Skip to content

Commit

Permalink
build: 2.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cssxsh committed Aug 11, 2024
1 parent 628025b commit a7569e2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 2.8.2 (24/08/11)

1. update: hibernate-platform 6.6.0.Final
2. update: h2 2.3.230
3. update: sqlite-jdbc 3.46.0.1
4. update: mysql-connector-j 9.0.0
5. update: mariadb-java-client 3.4.1
6. update: mssql-jdbc 12.8.0.jre11

## 2.8.1 (24/04/27)

1. update: hibernate-orm 6.4.8.Final
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@

本插件打包了以下版本的数据库驱动和连接池

* `com.mysql:mysql-connector-j:8.3.0` - [mysql.hibernate.properties](example/mysql.hibernate.properties)
* `org.mariadb.jdbc:mariadb-java-client:3.3.3` - [mariadb.hibernate.properties](example/mariadb.hibernate.properties)
* `org.xerial:sqlite-jdbc:3.45.3.0` - [sqlite.hibernate.properties](example/sqlite.hibernate.properties)
* `org.postgresql:postgresql:42.7.3` - [postgresql.hibernate.properties](example/postgresql.hibernate.properties)
* `com.h2database:h2:2.2.224` - [h2.hibernate.properties](example/h2.hibernate.properties)
* `com.microsoft.sqlserver:mssql-jdbc:12.6.1.jre11` - [sqlserver.hibernate.properties](example/sqlserver.hibernate.properties)
* `com.zaxxer:HikariCP:5.0.1`
* `com.mysql:mysql-connector-j:9.0.0` - [mysql.hibernate.properties](example/mysql.hibernate.properties)
* `org.mariadb.jdbc:mariadb-java-client:3.4.1` - [mariadb.hibernate.properties](example/mariadb.hibernate.properties)
* `org.xerial:sqlite-jdbc:3.46.0.1` - [sqlite.hibernate.properties](example/sqlite.hibernate.properties)
* `org.postgresql:postgresql:42.7.3` - [postgresql.hibernate.properties](example/postgresql.hibernate.properties)
* `com.h2database:h2:2.3.230` - [h2.hibernate.properties](example/h2.hibernate.properties)
* `com.microsoft.sqlserver:mssql-jdbc:12.8.0.jre11` - [sqlserver.hibernate.properties](example/sqlserver.hibernate.properties)
* `com.zaxxer:HikariCP:5.0.1`

需要其他数据库驱动或连接池支持,请添加 `plugin-shared-libraries` 依赖,有2种方法

Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "xyz.cssxsh.mirai"
version = "2.8.1"
version = "2.8.2"

mavenCentralPublish {
useCentralS01()
Expand All @@ -34,7 +34,7 @@ dependencies {
api("org.mariadb.jdbc:mariadb-java-client:3.4.1")
api("org.postgresql:postgresql:42.7.3")
api("org.reflections:reflections:0.10.2")
compileOnly("xyz.cssxsh.mirai:mirai-administrator:1.4.3")
compileOnly("xyz.cssxsh.mirai:mirai-administrator:1.4.4")
testImplementation(kotlin("test"))
testImplementation("com.microsoft.sqlserver:mssql-jdbc:12.8.0.jre11")
//
Expand All @@ -46,7 +46,7 @@ dependencies {
testImplementation("net.mamoe:mirai-core-utils")
testImplementation("net.mamoe:mirai-console-compiler-common")
//
implementation(platform("org.hibernate.orm:hibernate-platform:6.6.0.Final"))
api(platform("org.hibernate.orm:hibernate-platform:6.6.0.Final"))
api("org.hibernate.orm:hibernate-core")
api("org.hibernate.orm:hibernate-hikaricp")
api("org.hibernate.orm:hibernate-community-dialects")
Expand Down

0 comments on commit a7569e2

Please sign in to comment.