|
14 | 14 | <artifactId>api-boot-dependencies</artifactId>
|
15 | 15 | <properties>
|
16 | 16 | <main.basedir>${basedir}/../..</main.basedir>
|
17 |
| - |
18 |
| - <!--Spring Projects--> |
19 |
| - <spring.version>5.2.9.RELEASE</spring.version> |
20 |
| - <spring.boot.version>2.3.4.RELEASE</spring.boot.version> |
21 |
| - |
22 |
| - <code.builder.core.version>1.0.5.RELEASE</code.builder.core.version> |
23 |
| - |
24 |
| - <!--Others--> |
25 |
| - <druid.starter.version>1.1.21</druid.starter.version> |
26 |
| - <reflections.version>0.9.11</reflections.version> |
27 |
| - <jpush-client.version>3.3.11</jpush-client.version> |
28 |
| - <mysema.codegen.version>0.6.8</mysema.codegen.version> |
29 |
| - <javax-annotation-api.version>1.3.2</javax-annotation-api.version> |
30 |
| - <nacos.config.version>0.2.7</nacos.config.version> |
31 |
| - |
32 |
| - <!--Plugins--> |
33 |
| - <maven-plugin-api.version>3.6.1</maven-plugin-api.version> |
34 |
| - <maven-plugin-annotations.version>3.6.0</maven-plugin-annotations.version> |
| 17 | + <minbox-bom.version>1.0.4</minbox-bom.version> |
| 18 | + <spring.boot.version>2.3.6.RELEASE</spring.boot.version> |
| 19 | + <spring-cloud.version>2.2.6.RELEASE</spring-cloud.version> |
35 | 20 | <maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version>
|
36 |
| - <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version> |
37 | 21 | <build-helper-maven-plugin.version>3.0.0</build-helper-maven-plugin.version>
|
38 |
| - |
39 | 22 | </properties>
|
40 | 23 | <dependencyManagement>
|
41 | 24 | <dependencies>
|
42 |
| - <!--Bom Dependencies--> |
43 | 25 | <dependency>
|
44 | 26 | <groupId>org.springframework.boot</groupId>
|
45 | 27 | <artifactId>spring-boot-dependencies</artifactId>
|
46 | 28 | <version>${spring.boot.version}</version>
|
47 | 29 | <type>pom</type>
|
48 | 30 | <scope>import</scope>
|
49 | 31 | </dependency>
|
50 |
| - |
51 |
| - <!--SpringBoot Related Dependencies--> |
52 |
| - <dependency> |
53 |
| - <groupId>com.alibaba</groupId> |
54 |
| - <artifactId>druid-spring-boot-starter</artifactId> |
55 |
| - <version>${druid.starter.version}</version> |
56 |
| - </dependency> |
57 | 32 | <dependency>
|
58 |
| - <groupId>com.alibaba.boot</groupId> |
59 |
| - <artifactId>nacos-config-spring-boot-starter</artifactId> |
60 |
| - <version>${nacos.config.version}</version> |
61 |
| - </dependency> |
62 |
| - |
63 |
| - <!--MinBox Dependencies--> |
64 |
| - <dependency> |
65 |
| - <groupId>com.gitee.hengboy</groupId> |
66 |
| - <artifactId>code-builder-core</artifactId> |
67 |
| - <version>${code.builder.core.version}</version> |
| 33 | + <groupId>org.minbox.framework</groupId> |
| 34 | + <artifactId>minbox-bom</artifactId> |
| 35 | + <version>${minbox-bom.version}</version> |
| 36 | + <scope>import</scope> |
| 37 | + <type>pom</type> |
68 | 38 | </dependency>
|
69 |
| - |
70 |
| - |
71 |
| - <!--ApiBoot Dependencies--> |
72 | 39 | <dependency>
|
73 | 40 | <groupId>org.minbox.framework</groupId>
|
74 | 41 | <artifactId>api-boot</artifactId>
|
|
89 | 56 | <artifactId>api-boot-tools</artifactId>
|
90 | 57 | <version>${project.version}</version>
|
91 | 58 | </dependency>
|
92 |
| - |
93 |
| - |
94 |
| - <!--ApiBoot Starters--> |
95 | 59 | <dependency>
|
96 | 60 | <groupId>org.minbox.framework</groupId>
|
97 | 61 | <artifactId>api-boot-starter</artifactId>
|
|
192 | 156 | <artifactId>api-boot-starter-message-pipe-server</artifactId>
|
193 | 157 | <version>${project.version}</version>
|
194 | 158 | </dependency>
|
195 |
| - |
196 |
| - |
197 |
| - <!--Others--> |
198 |
| - <dependency> |
199 |
| - <groupId>org.reflections</groupId> |
200 |
| - <artifactId>reflections</artifactId> |
201 |
| - <version>${reflections.version}</version> |
202 |
| - </dependency> |
203 |
| - <dependency> |
204 |
| - <groupId>org.apache.maven</groupId> |
205 |
| - <artifactId>maven-plugin-api</artifactId> |
206 |
| - <version>${maven-plugin-api.version}</version> |
207 |
| - </dependency> |
208 | 159 | <dependency>
|
209 |
| - <groupId>org.apache.maven.plugin-tools</groupId> |
210 |
| - <artifactId>maven-plugin-annotations</artifactId> |
211 |
| - <version>${maven-plugin-annotations.version}</version> |
212 |
| - </dependency> |
213 |
| - <dependency> |
214 |
| - <groupId>cn.jpush.api</groupId> |
215 |
| - <artifactId>jpush-client</artifactId> |
216 |
| - <version>${jpush-client.version}</version> |
217 |
| - </dependency> |
218 |
| - <dependency> |
219 |
| - <groupId>com.mysema.codegen</groupId> |
220 |
| - <artifactId>codegen</artifactId> |
221 |
| - <version>${mysema.codegen.version}</version> |
222 |
| - </dependency> |
223 |
| - <dependency> |
224 |
| - <groupId>javax.annotation</groupId> |
225 |
| - <artifactId>javax.annotation-api</artifactId> |
226 |
| - <version>${javax-annotation-api.version}</version> |
| 160 | + <groupId>org.minbox.framework</groupId> |
| 161 | + <artifactId>api-boot-starter-ssh-agent</artifactId> |
| 162 | + <version>${project.version}</version> |
227 | 163 | </dependency>
|
228 | 164 | </dependencies>
|
229 | 165 | </dependencyManagement>
|
|
0 commit comments