Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

42 upgrade dependencies update readmemd #45

Merged
merged 2 commits into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.github.fmjsjx</groupId>
<artifactId>bson-model-bom</artifactId>
<version>2.0.0-RC3</version>
<version>2.0.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down Expand Up @@ -58,7 +58,7 @@ repositories {

dependencies {
// 版本控制
implementation platform('com.github.fmjsjx:bson-model-bom:2.0.0-RC3')
implementation platform('com.github.fmjsjx:bson-model-bom:2.0.0')
// 核心库
implementation 'com.github.fmjsjx:bson-model-core'
// 代码生成器
Expand All @@ -73,7 +73,7 @@ repositories {

dependencies {
// 版本控制
implementation(platform("com.github.fmjsjx:bson-model-bom:2.0.0-RC3"))
implementation(platform("com.github.fmjsjx:bson-model-bom:2.0.0"))
// 核心库
implementation("com.github.fmjsjx:bson-model-core")
// 代码生成器
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {

dependencies {
// libcommon-bom
api(platform("com.github.fmjsjx:libcommon-bom:3.3.0"))
api(platform("com.github.fmjsjx:libcommon-bom:3.4.0"))
// junit-bom
testImplementation(platform("org.junit:junit-bom:5.9.2"))
// jackson2-bom
Expand All @@ -21,7 +21,7 @@ dependencies {
implementation("org.slf4j:slf4j-api:1.7.36")
implementation("ch.qos.logback:logback-classic:1.2.10")
api("com.jsoniter:jsoniter:0.9.23")
val mongodbVersion = "4.9.0"
val mongodbVersion = "4.9.1"
api("org.mongodb:bson:$mongodbVersion")
api("org.mongodb:mongodb-driver-core:$mongodbVersion")
api("org.mongodb:mongodb-driver-sync:$mongodbVersion")
Expand Down