Skip to content

Commit

Permalink
change version 0.0.2.6 to 0.0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsun28 committed Aug 19, 2020
1 parent cecb418 commit 5bf0afb
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
<dependency>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.6</version>
<version>0.0.2.7</version>
</dependency>
```

2. 项目使用`gradle`构建,`gradle`坐标
```
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.6'
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.7'
```

3. 项目为普通工程,加入`sureness-core.jar`依赖
Expand Down
4 changes: 2 additions & 2 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
<dependency>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.6</version>
<version>0.0.2.7</version>
</dependency>
```
2. When use gradle build project, add gradle coordinate
```
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.6'
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.7'
```
3. When not java build project, add sureness-core.jar to classPath
```
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.6</version>
<version>0.0.2.7</version>
<packaging>jar</packaging>

<name>sureness</name>
Expand Down
4 changes: 2 additions & 2 deletions docs/en/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
<dependency>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.6</version>
<version>0.0.2.7</version>
</dependency>
```
2. When use gradle build project, add gradle coordinate
```
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.6'
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.7'
```
3. When not java build project, add sureness-core.jar to classPath
```
Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<dependency>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.6</version>
<version>0.0.2.7</version>
</dependency>
```

2. 项目使用`gradle`构建,`gradle`坐标
```
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.6'
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.7'
```

3. 项目为普通工程,加入`sureness-core.jar`依赖
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sureness-core.version>0.0.2.6</sureness-core.version>
<sureness-core.version>0.0.2.7</sureness-core.version>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down
4 changes: 2 additions & 2 deletions sample-tom/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jasypt:
spring:
profiles: dev
datasource:
driver-class-name: com.mysql.jdbc.Driver
driver-class-name: com.mysql.cj.jdbc.Driver
username: root
password: ENC(vp7cbF0sE/lRsThrcwdiA/WoeG1mIXzy)
url: jdbc:mysql://47.110.55.246:3306/tom?useUnicode=true&characterEncoding=utf-8&useSSL=false
Expand All @@ -31,7 +31,7 @@ spring:
spring:
profiles: prod
datasource:
driver-class-name: com.mysql.jdbc.Driver
driver-class-name: com.mysql.cj.jdbc.Driver
username: root
password: ENC(vp7cbF0sE/lRsThrcwdiA/WoeG1mIXzy)
url: jdbc:mysql://47.110.55.246:3306/tom?useUnicode=true&characterEncoding=utf-8&useSSL=false
Expand Down

0 comments on commit 5bf0afb

Please sign in to comment.