|
5 | 5 | <parent> |
6 | 6 | <artifactId>api-boot</artifactId> |
7 | 7 | <groupId>org.minbox.framework</groupId> |
8 | | - <version>2.0.5.RELEASE</version> |
| 8 | + <version>2.0.6.RELEASE</version> |
9 | 9 | <relativePath>../..</relativePath> |
10 | 10 | </parent> |
11 | 11 | <packaging>pom</packaging> |
|
15 | 15 | <properties> |
16 | 16 | <main.basedir>${basedir}/../..</main.basedir> |
17 | 17 | <spring.boot.version>2.1.4.RELEASE</spring.boot.version> |
18 | | - <api.boot.version>2.0.5.RELEASE</api.boot.version> |
19 | | - <mybatis.enhance.version>1.1.0.RELEASE</mybatis.enhance.version> |
20 | | - <mybatis.pageable.version>1.0.6.RELEASE</mybatis.pageable.version> |
| 18 | + <api.boot.version>2.0.6.RELEASE</api.boot.version> |
21 | 19 | <druid.version>1.1.14</druid.version> |
22 | 20 | <druid.starter.version>1.1.14</druid.starter.version> |
23 | 21 | <fastjson.version>1.2.56</fastjson.version> |
|
32 | 30 | <quartz.version>2.3.0</quartz.version> |
33 | 31 | <spring.tx.version>5.1.5.RELEASE</spring.tx.version> |
34 | 32 | <jpush-client.version>3.3.11</jpush-client.version> |
| 33 | + <maven-plugin-api.version>3.6.1</maven-plugin-api.version> |
| 34 | + <maven-plugin-annotations.version>3.6.0</maven-plugin-annotations.version> |
| 35 | + <maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version> |
| 36 | + <!--Builder Core Version--> |
| 37 | + <code.builder.core.version>1.0.5.RELEASE</code.builder.core.version> |
| 38 | + <mybatis.pageable.core.version>1.0.6.RELEASE</mybatis.pageable.core.version> |
| 39 | + <mybatis.enhance.core.version>1.1.0.RELEASE</mybatis.enhance.core.version> |
| 40 | + <mybatis.enhance.dsl.version>1.0.7.RELEASE</mybatis.enhance.dsl.version> |
35 | 41 |
|
36 | 42 | <!--Plugin Versions--> |
37 | 43 | <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version> |
|
99 | 105 | <artifactId>druid-spring-boot-starter</artifactId> |
100 | 106 | <version>${druid.starter.version}</version> |
101 | 107 | </dependency> |
102 | | - <!--mybatis enhance--> |
103 | | - <dependency> |
104 | | - <groupId>com.gitee.hengboy</groupId> |
105 | | - <artifactId>spring-boot-starter-mybatis-enhance</artifactId> |
106 | | - <version>${mybatis.enhance.version}</version> |
107 | | - </dependency> |
108 | | - <!--mybatis pageable--> |
109 | | - <dependency> |
110 | | - <groupId>com.gitee.hengboy</groupId> |
111 | | - <artifactId>spring-boot-starter-mybatis-pageable</artifactId> |
112 | | - <version>${mybatis.pageable.version}</version> |
113 | | - </dependency> |
114 | 108 |
|
115 | 109 | <!--reflections--> |
116 | 110 | <dependency> |
|
131 | 125 | <version>${spring.tx.version}</version> |
132 | 126 | </dependency> |
133 | 127 |
|
| 128 | + <!--Maven Plugin--> |
| 129 | + <dependency> |
| 130 | + <groupId>org.apache.maven</groupId> |
| 131 | + <artifactId>maven-plugin-api</artifactId> |
| 132 | + <version>${maven-plugin-api.version}</version> |
| 133 | + </dependency> |
| 134 | + <dependency> |
| 135 | + <groupId>org.apache.maven.plugin-tools</groupId> |
| 136 | + <artifactId>maven-plugin-annotations</artifactId> |
| 137 | + <version>${maven-plugin-annotations.version}</version> |
| 138 | + </dependency> |
| 139 | + |
| 140 | + |
134 | 141 | <!--ApiBoot Swagger--> |
135 | 142 | <dependency> |
136 | 143 | <groupId>io.springfox</groupId> |
|
284 | 291 | <version>${api.boot.version}</version> |
285 | 292 | </dependency> |
286 | 293 |
|
| 294 | + <!--ApiBoot Code Builder--> |
| 295 | + <dependency> |
| 296 | + <groupId>com.gitee.hengboy</groupId> |
| 297 | + <artifactId>code-builder-core</artifactId> |
| 298 | + <version>${code.builder.core.version}</version> |
| 299 | + </dependency> |
| 300 | + |
| 301 | + <!--ApiBoot Mybatis Pageable--> |
| 302 | + <dependency> |
| 303 | + <groupId>com.gitee.hengboy</groupId> |
| 304 | + <artifactId>mybatis-pageable-core</artifactId> |
| 305 | + <version>${mybatis.pageable.core.version}</version> |
| 306 | + </dependency> |
| 307 | + <dependency> |
| 308 | + <groupId>org.minbox.framework</groupId> |
| 309 | + <artifactId>api-boot-starter-mybatis-pageable</artifactId> |
| 310 | + <version>${api.boot.version}</version> |
| 311 | + </dependency> |
| 312 | + |
| 313 | + <!--ApiBoot Mybatis Enhance--> |
| 314 | + <dependency> |
| 315 | + <groupId>com.gitee.hengboy</groupId> |
| 316 | + <artifactId>mybatis-enhance-core</artifactId> |
| 317 | + <version>${mybatis.enhance.core.version}</version> |
| 318 | + </dependency> |
| 319 | + <dependency> |
| 320 | + <groupId>com.gitee.hengboy</groupId> |
| 321 | + <artifactId>mybatis-enhance-dsl</artifactId> |
| 322 | + <version>${mybatis.enhance.dsl.version}</version> |
| 323 | + </dependency> |
| 324 | + <dependency> |
| 325 | + <groupId>org.minbox.framework</groupId> |
| 326 | + <artifactId>api-boot-starter-mybatis-enhance</artifactId> |
| 327 | + <version>${api.boot.version}</version> |
| 328 | + </dependency> |
| 329 | + |
| 330 | + <!--ApiBoot RateLimiter--> |
| 331 | + <dependency> |
| 332 | + <groupId>org.minbox.framework</groupId> |
| 333 | + <artifactId>api-boot-plugin-rate-limiter</artifactId> |
| 334 | + <version>${api.boot.version}</version> |
| 335 | + </dependency> |
| 336 | + <dependency> |
| 337 | + <groupId>org.minbox.framework</groupId> |
| 338 | + <artifactId>api-boot-starter-rate-limiter</artifactId> |
| 339 | + <version>${api.boot.version}</version> |
| 340 | + </dependency> |
| 341 | + |
287 | 342 | </dependencies> |
288 | 343 | </dependencyManagement> |
289 | 344 |
|
|
301 | 356 | <artifactId>build-helper-maven-plugin</artifactId> |
302 | 357 | <version>${build-helper-maven-plugin.version}</version> |
303 | 358 | </plugin> |
| 359 | + <!--ApiBoot Code Builder--> |
| 360 | + <plugin> |
| 361 | + <groupId>org.minbox.framework</groupId> |
| 362 | + <artifactId>api-boot-maven-plugin-code-builder</artifactId> |
| 363 | + <version>${api.boot.version}</version> |
| 364 | + </plugin> |
| 365 | + <plugin> |
| 366 | + <groupId>org.apache.maven.plugins</groupId> |
| 367 | + <artifactId>maven-plugin-plugin</artifactId> |
| 368 | + <version>${maven-plugin-plugin.version}</version> |
| 369 | + </plugin> |
304 | 370 | </plugins> |
305 | 371 | </pluginManagement> |
306 | 372 | </build> |
|
0 commit comments