Skip to content

Commit

Permalink
v3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
troyzhxu committed Jun 22, 2022
1 parent a990ce4 commit 39bb980
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ Bean Searcher can work with any JavaWeb frameworks, such as: SpringBoot, SpringM
All you need is to add a dependence:

```groovy
implementation 'com.ejlchina:bean-searcher-boot-stater:3.7.0'
implementation 'com.ejlchina:bean-searcher-boot-stater:3.7.1'
```

and then you can inject `Searcher` into a `Controller` or `Service`:
Expand All @@ -241,7 +241,7 @@ private BeanSearcher beanSearcher;
Adding this dependence:

```groovy
implementation 'com.ejlchina:bean-searcher:3.7.0'
implementation 'com.ejlchina:bean-searcher:3.7.1'
```

then you can build a `Searcher` with `SearcherBuilder`:
Expand Down
4 changes: 2 additions & 2 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ List<User> users = beanSearcher.searchList(User.class, params);
#### Spring Boot 项目,添加依赖即集成完毕:

```groovy
implementation 'com.ejlchina:bean-searcher-boot-stater:3.7.0'
implementation 'com.ejlchina:bean-searcher-boot-stater:3.7.1'
```

接着便可在 `Controller``Service` 里注入检索器:
Expand All @@ -231,7 +231,7 @@ private BeanSearcher beanSearcher;
#### 其它框架,使用如下依赖:

```groovy
implementation 'com.ejlchina:bean-searcher:3.7.0'
implementation 'com.ejlchina:bean-searcher:3.7.1'
```

然后可以使用 `SearcherBuilder` 构建一个检索器:
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-parent</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-demos/bs-demo-grails/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies {
implementation "org.grails.plugins:events"
implementation "org.grails.plugins:gsp"

implementation "com.ejlchina:bean-searcher-boot-starter:3.7.0"
implementation "com.ejlchina:bean-searcher-boot-starter:3.7.1"

profile "org.grails.profiles:web"
runtimeOnly "org.glassfish.web:el-impl:2.2.1-b05"
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-demos/bs-demo-jdkmods/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-boot-starter</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-demos/bs-demo-mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-boot-starter</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-demos/bs-demo-pgsql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-boot-starter</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-demos/bs-demo-sqlserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-boot-starter</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-demos/spring-boot-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-boot-starter</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-parent</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion performance/vs-data-jdbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}

dependencies {
implementation 'com.ejlchina:bean-searcher-boot-starter:3.7.0'
implementation 'com.ejlchina:bean-searcher-boot-starter:3.7.1'
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
runtimeOnly 'com.h2database:h2'
Expand Down
2 changes: 1 addition & 1 deletion performance/vs-data-jpa/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}

dependencies {
implementation 'com.ejlchina:bean-searcher-boot-starter:3.7.0'
implementation 'com.ejlchina:bean-searcher-boot-starter:3.7.1'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
runtimeOnly 'com.h2database:h2'
Expand Down
2 changes: 1 addition & 1 deletion performance/vs-mybatis-plus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {

dependencies {
implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.1'
implementation 'com.ejlchina:bean-searcher-boot-starter:3.7.0'
implementation 'com.ejlchina:bean-searcher-boot-starter:3.7.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
runtimeOnly 'com.h2database:h2'
}
Expand Down
2 changes: 1 addition & 1 deletion performance/vs-mybatis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}

dependencies {
implementation 'com.ejlchina:bean-searcher-boot-starter:3.7.0'
implementation 'com.ejlchina:bean-searcher-boot-starter:3.7.1'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
runtimeOnly 'com.h2database:h2'
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-parent</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>

<packaging>pom</packaging>

Expand Down Expand Up @@ -45,7 +45,7 @@
<connection>scm:git:https://github.com/ejlchina/bean-searcher.git</connection>
<developerConnection>scm:git:https://github.com/ejlchina/bean-searcher.git</developerConnection>
<url>https://github.com/ejlchina/bean-searcher</url>
<tag>v3.7.0</tag>
<tag>v3.7.1</tag>
</scm>

<dependencies>
Expand Down

0 comments on commit 39bb980

Please sign in to comment.