Skip to content

Commit c4523f4

Browse files
author
isaac
committed
🔖 1.0.1.RELEASE
1 parent 37edf46 commit c4523f4

File tree

26 files changed

+33
-33
lines changed

26 files changed

+33
-33
lines changed

examples/basic-example/basic-example-main/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>basic-example</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
</parent>
1111

1212
<artifactId>basic-example-main</artifactId>

examples/basic-example/basic-example-runner/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>basic-example</artifactId>
88
<groupId>com.github.codingdebugallday</groupId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
</parent>
1111

1212
<artifactId>basic-example-runner</artifactId>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
plugin.id=basic-example-plugin1
22
plugin.class=com.basic.example.plugin1.DefinePlugin
3-
plugin.version=1.0.0.RELEASE
3+
plugin.version=1.0.1.RELEASE
44
plugin.provider=isaac

examples/basic-example/plugins/basic-example-plugin1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>basic-example-plugin-parent</artifactId>
77
<groupId>com.github.codingdebugallday</groupId>
8-
<version>1.0.0.RELEASE</version>
8+
<version>1.0.1.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
plugin.id=basic-example-plugin2
22
plugin.class=com.basic.example.plugin2.DefinePlugin
3-
plugin.version=1.0.0.RELEASE
3+
plugin.version=1.0.1.RELEASE
44
plugin.provider=isaac

examples/basic-example/plugins/basic-example-plugin2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>basic-example-plugin-parent</artifactId>
77
<groupId>com.github.codingdebugallday</groupId>
8-
<version>1.0.0.RELEASE</version>
8+
<version>1.0.1.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

examples/basic-example/plugins/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>basic-example</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
</parent>
1111

1212
<artifactId>basic-example-plugin-parent</artifactId>

examples/basic-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>springboot-plugin-framework-example</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
</parent>
1111

1212
<artifactId>basic-example</artifactId>

examples/integration-mybatis/integration-mybatis-main/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212

1313
<groupId>com.github.codingdebugallday</groupId>
1414
<artifactId>integration-mybatis-main</artifactId>
15-
<version>1.0.0.RELEASE</version>
15+
<version>1.0.1.RELEASE</version>
1616

1717
<properties>
18-
<springboot-plugin-framework.version>1.0.0.RELEASE</springboot-plugin-framework.version>
19-
<extension-mybatis.version>1.0.0.RELEASE</extension-mybatis.version>
20-
<extension-resources.version>1.0.0.RELEASE</extension-resources.version>
18+
<springboot-plugin-framework.version>1.0.1.RELEASE</springboot-plugin-framework.version>
19+
<extension-mybatis.version>1.0.1.RELEASE</extension-mybatis.version>
20+
<extension-resources.version>1.0.1.RELEASE</extension-resources.version>
2121
<mybatis-spring-boot-starter.version>2.1.3</mybatis-spring-boot-starter.version>
2222
<springfox-swagger2.version>2.9.2</springfox-swagger2.version>
2323
<swagger-bootstrap-ui.version>1.9.6</swagger-bootstrap-ui.version>

examples/integration-mybatis/integration-mybatis-runner/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>com.github.codingdebugallday</groupId>
1414
<artifactId>integration-mybatis-runner</artifactId>
15-
<version>1.0.0.RELEASE</version>
15+
<version>1.0.1.RELEASE</version>
1616
<packaging>jar</packaging>
1717
<description>启动程序模块,将启动类配置到该模块下</description>
1818

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
plugin.id=integration-mybatis-plugin1
22
plugin.class=com.mybatis.plugin1.ExamplePlugin1
3-
plugin.version=1.0.0.RELEASE
3+
plugin.version=1.0.1.RELEASE
44
plugin.provider=isaac

examples/integration-mybatis/plugins/integration-mybatis-plugin1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>integration-mybatis-plugin-parent</artifactId>
77
<groupId>com.github.codingdebugallday</groupId>
8-
<version>1.0.0.RELEASE</version>
8+
<version>1.0.1.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
plugin.id=integration-mybatis-plugin2
22
plugin.class=com.mybatis.plugin2.ExamplePlugin2
3-
plugin.version=1.0.0.RELEASE
3+
plugin.version=1.0.1.RELEASE
44
plugin.provider=isaac

examples/integration-mybatis/plugins/integration-mybatis-plugin2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>integration-mybatis-plugin-parent</artifactId>
88
<groupId>com.github.codingdebugallday</groupId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
</parent>
1111

1212
<artifactId>integration-mybatis-plugin2</artifactId>

examples/integration-mybatis/plugins/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<artifactId>integration-mybatis</artifactId>
1313
<groupId>com.github.codingdebugallday</groupId>
14-
<version>1.0.0.RELEASE</version>
14+
<version>1.0.1.RELEASE</version>
1515
</parent>
1616

1717
<artifactId>integration-mybatis-plugin-parent</artifactId>

examples/integration-mybatis/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-plugin-framework-example</artifactId>
88
<groupId>com.github.codingdebugallday</groupId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
</parent>
1111
<packaging>pom</packaging>
1212

examples/integration-mybatisplus/integration-mybatisplus-main/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212

1313
<groupId>com.github.codingdebugallday</groupId>
1414
<artifactId>integration-mybatisplus-main</artifactId>
15-
<version>1.0.0.RELEASE</version>
15+
<version>1.0.1.RELEASE</version>
1616
<description>集成mybatis-plus 案例--主程序</description>
1717

1818
<properties>
1919
<java.version>1.8</java.version>
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2222
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
23-
<springboot-plugin-framework.version>1.0.0.RELEASE</springboot-plugin-framework.version>
24-
<extension-mybatis.version>1.0.0.RELEASE</extension-mybatis.version>
23+
<springboot-plugin-framework.version>1.0.1.RELEASE</springboot-plugin-framework.version>
24+
<extension-mybatis.version>1.0.1.RELEASE</extension-mybatis.version>
2525

2626
<mybatis-spring-boot-starter.version>2.1.3</mybatis-spring-boot-starter.version>
2727
<mybatis-plus-boot-starter.version>3.3.2</mybatis-plus-boot-starter.version>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
plugin.id=integration-mybatisplus-plugin
22
plugin.class=com.mybatisplus.plugin.MybatisPlusPlugin
3-
plugin.version=1.0.0.RELEASE
3+
plugin.version=1.0.1.RELEASE
44
plugin.provider=isaac

examples/integration-mybatisplus/plugins/integration-mybatisplus-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>integration-mybatisplus-plugin</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010

1111
<properties>
1212
<plugin.id>integration-mybatisplus-plugin</plugin.id>

examples/integration-mybatisplus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-plugin-framework-example</artifactId>
88
<groupId>com.github.codingdebugallday</groupId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
</parent>
1111

1212
<description>集成mybatis-plus案例</description>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>springboot-plugin-framework-parent</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
</parent>
1111

1212
<artifactId>springboot-plugin-framework-example</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>springboot-plugin-framework-parent</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
<packaging>pom</packaging>
1111

1212
<modules>

springboot-plugin-framework-extension/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>springboot-plugin-framework-extension</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010
<packaging>pom</packaging>
1111

1212
<name>springboot-plugin-framework-extension</name>

springboot-plugin-framework-extension/springboot-plugin-framework-extension-mybatis/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>springboot-plugin-framework-extension-mybatis</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010

1111
<name>springboot-plugin-framework-extension-mybatis</name>
1212
<description>spring boot 插件式开发集成扩展 mybatis</description>
@@ -47,7 +47,7 @@
4747
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
4848
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
4949

50-
<springboot-plugin-framework.version>1.0.0.RELEASE</springboot-plugin-framework.version>
50+
<springboot-plugin-framework.version>1.0.1.RELEASE</springboot-plugin-framework.version>
5151
<mybatis-spring-boot-starter.version>2.1.3</mybatis-spring-boot-starter.version>
5252
<mybatis-plus-boot-starter.version>3.3.2</mybatis-plus-boot-starter.version>
5353
</properties>

springboot-plugin-framework-extension/springboot-plugin-framework-extension-resources/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>springboot-plugin-framework-extension-resources</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010

1111
<name>springboot-plugin-framework-extension-resources</name>
1212
<description>插件扩展-通过url读取插件中的静态资源</description>
@@ -50,7 +50,7 @@
5050
<spring-version>5.2.7.RELEASE</spring-version>
5151
<javax.servlet-api.version>4.0.1</javax.servlet-api.version>
5252

53-
<springboot-plugin-framework.version>1.0.0.RELEASE</springboot-plugin-framework.version>
53+
<springboot-plugin-framework.version>1.0.1.RELEASE</springboot-plugin-framework.version>
5454
<spring-boot.version>2.2.7.RELEASE</spring-boot.version>
5555
</properties>
5656

springboot-plugin-framework/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.codingdebugallday</groupId>
88
<artifactId>springboot-plugin-framework</artifactId>
9-
<version>1.0.0.RELEASE</version>
9+
<version>1.0.1.RELEASE</version>
1010

1111
<name>springboot-plugin-framework</name>
1212
<description>spring boot 插件式开发集成包</description>

0 commit comments

Comments
 (0)