Skip to content

Commit

Permalink
0.9.34
Browse files Browse the repository at this point in the history
  • Loading branch information
babyfish-ct committed Dec 19, 2024
1 parent 768d7f0 commit 262181b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions docs/quick-view/get-started/create-project.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Modify build.gradle or pom.xml to add dependencies:

```xml title="pom.xml"
<properties>
<jimmer.version>0.9.31</jimmer.version>
<jimmer.version>0.9.34</jimmer.version>
</properties>

<dependencies>
Expand All @@ -75,7 +75,7 @@ Modify build.gradle or pom.xml to add dependencies:

```groovy
ext {
jimmerVersion = '0.9.31'
jimmerVersion = '0.9.34'
}
dependencies {
Expand All @@ -90,7 +90,7 @@ dependencies {
<TabItem value="gradlekts" label="Gradle (Kts)">

```kotlin
val jimmerVersion = "0.9.31"
val jimmerVersion = "0.9.34"

dependencies {

Expand All @@ -114,7 +114,7 @@ plugins {
jimmer {
// Set the Jimmer dependency version, where you can also use version range expressions such as "latest.release" or "0.+"
version = "0.9.31"
version = "0.9.34"
}
```

Expand All @@ -132,7 +132,7 @@ plugins {

jimmer {
// Set the Jimmer dependency version, where you can also use version range expressions such as "latest.release" or "0.+"
version = "0.9.31"
version = "0.9.34"
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Jimmer本身是高度中立的,可以脱离spring-boot使用;但同时也提

```xml title="pom.xml"
<properties>
<jimmer.version>0.9.31</jimmer.version>
<jimmer.version>0.9.34</jimmer.version>
</properties>

<dependencies>
Expand All @@ -75,7 +75,7 @@ Jimmer本身是高度中立的,可以脱离spring-boot使用;但同时也提

```groovy title="build.gradle"
ext {
jimmerVersion = "0.9.31"
jimmerVersion = "0.9.34"
}
dependencies {
Expand All @@ -90,7 +90,7 @@ dependencies {
<TabItem value="gradlekts" label="Gradle(kts)">

```kotlin title="build.gradle.kts"
val jimmerVersion = "0.9.31"
val jimmerVersion = "0.9.34"

dependencies {

Expand All @@ -114,7 +114,7 @@ plugins {
jimmer {
// 设定 jimmer 依赖版本,此处也可以使用 "latest.release" 或 "0.+" 等版本范围表达式
version = "0.9.31"
version = "0.9.34"
}
```

Expand All @@ -132,7 +132,7 @@ plugins {

jimmer {
// 设定 jimmer 依赖版本,此处也可以使用 "latest.release" 或 "0.+" 等版本范围表达式
version = "0.9.31"
version = "0.9.34"
}
```

Expand Down

0 comments on commit 262181b

Please sign in to comment.