普兆健康管家后端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

623 lines
20 KiB

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.jeecgframework.boot</groupId>
  4. <artifactId>jeecg-boot-parent</artifactId>
  5. <version>3.8.1</version>
  6. <packaging>pom</packaging>
  7. <name>JEECG BOOT ${project.version}</name>
  8. <developers>
  9. <developer>
  10. <name>北京国炬信息技术有限公司</name>
  11. <email>jeecgos@163.com</email>
  12. <url>http://www.guojusoft.com</url>
  13. </developer>
  14. </developers>
  15. <scm>
  16. <connection>http://www.jeecg.com</connection>
  17. <developerConnection>http://guojusoft.com</developerConnection>
  18. <url>http://www.jeecg.com/vip</url>
  19. </scm>
  20. <parent>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-parent</artifactId>
  23. <version>2.7.18</version>
  24. <relativePath/>
  25. </parent>
  26. <properties>
  27. <jeecgboot.version>3.8.1</jeecgboot.version>
  28. <!-- JDK版本支持17和1.8 -->
  29. <java.version>17</java.version>
  30. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  31. <!-- 微服务 -->
  32. <spring-cloud.version>2021.0.8</spring-cloud.version>
  33. <spring-cloud-alibaba.version>2021.0.6.2</spring-cloud-alibaba.version>
  34. <alibaba.nacos.version>2.0.4</alibaba.nacos.version>
  35. <seata.version>1.5.2</seata.version>
  36. <xxl-job-core.version>2.4.1</xxl-job-core.version>
  37. <fastjson.version>2.0.57</fastjson.version>
  38. <aviator.version>5.2.6</aviator.version>
  39. <pegdown.version>1.6.0</pegdown.version>
  40. <commonmark.version>0.17.0</commonmark.version>
  41. <knife4j-spring-boot-starter.version>4.4.0</knife4j-spring-boot-starter.version>
  42. <!-- 数据库驱动 -->
  43. <postgresql.version>42.2.25</postgresql.version>
  44. <ojdbc6.version>11.2.0.3</ojdbc6.version>
  45. <sqljdbc4.version>4.0</sqljdbc4.version>
  46. <mysql-connector-java.version>8.0.27</mysql-connector-java.version>
  47. <hutool.version>5.8.25</hutool.version>
  48. <!-- 国产数据库驱动 -->
  49. <kingbase8.version>9.0.0</kingbase8.version>
  50. <dm8.version>8.1.1.49</dm8.version>
  51. <!-- 积木报表-->
  52. <jimureport-spring-boot-starter.version>2.1.0</jimureport-spring-boot-starter.version>
  53. <minidao.version>1.10.10</minidao.version>
  54. <!-- 持久层 -->
  55. <mybatis-plus.version>3.5.3.2</mybatis-plus.version>
  56. <dynamic-datasource-spring-boot-starter.version>4.1.3</dynamic-datasource-spring-boot-starter.version>
  57. <druid.version>1.2.24</druid.version>
  58. <commons-io.version>2.11.0</commons-io.version>
  59. <commons.version>2.6</commons.version>
  60. <aliyun-java-sdk-dysmsapi.version>2.1.0</aliyun-java-sdk-dysmsapi.version>
  61. <aliyun.oss.version>3.11.2</aliyun.oss.version>
  62. <!-- shiro -->
  63. <shiro.version>1.13.0</shiro.version>
  64. <shiro-redis.version>3.2.3</shiro-redis.version>
  65. <java-jwt.version>4.5.0</java-jwt.version>
  66. <codegenerate.version>1.4.9</codegenerate.version>
  67. <autopoi-web.version>1.4.11</autopoi-web.version>
  68. <minio.version>8.0.3</minio.version>
  69. <justauth-spring-boot-starter.version>1.4.0</justauth-spring-boot-starter.version>
  70. <dom4j.version>1.6.1</dom4j.version>
  71. <qiniu-java-sdk.version>7.4.0</qiniu-java-sdk.version>
  72. <baidu-java-sdk.version>4.16.19</baidu-java-sdk.version>
  73. <!-- Log4j2爆雷漏洞 -->
  74. <log4j2.version>2.17.0</log4j2.version>
  75. <logback.version>1.2.13</logback.version>
  76. </properties>
  77. <modules>
  78. <module>jeecg-boot-base-core</module>
  79. <module>jeecg-module-system</module>
  80. <module>jeecg-boot-module</module>
  81. </modules>
  82. <repositories>
  83. <repository>
  84. <id>aliyun</id>
  85. <name>aliyun Repository</name>
  86. <url>https://maven.aliyun.com/repository/public</url>
  87. <snapshots>
  88. <enabled>false</enabled>
  89. </snapshots>
  90. </repository>
  91. <repository>
  92. <id>jeecg</id>
  93. <name>jeecg Repository</name>
  94. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  95. <snapshots>
  96. <enabled>false</enabled>
  97. </snapshots>
  98. </repository>
  99. <repository>
  100. <id>jeecg-snapshots</id>
  101. <name>jeecg-snapshots Repository</name>
  102. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  103. <releases>
  104. <enabled>false</enabled>
  105. </releases>
  106. <snapshots>
  107. <enabled>true</enabled>
  108. </snapshots>
  109. </repository>
  110. </repositories>
  111. <dependencies>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-test</artifactId>
  115. <scope>test</scope>
  116. </dependency>
  117. <!-- Lombok -->
  118. <dependency>
  119. <groupId>org.projectlombok</groupId>
  120. <artifactId>lombok</artifactId>
  121. </dependency>
  122. <!-- json -->
  123. <dependency>
  124. <groupId>com.alibaba</groupId>
  125. <artifactId>fastjson</artifactId>
  126. <version>${fastjson.version}</version>
  127. </dependency>
  128. <!-- markdown -->
  129. <!--<dependency>
  130. <groupId>org.pegdown</groupId>
  131. <artifactId>pegdown</artifactId>
  132. <version>${pegdown.version}</version>
  133. </dependency>-->
  134. <!--markdown 解析 https://github.com/commonmark/commonmark-java -->
  135. <dependency>
  136. <groupId>org.commonmark</groupId>
  137. <artifactId>commonmark</artifactId>
  138. <version>${commonmark.version}</version>
  139. </dependency>
  140. </dependencies>
  141. <dependencyManagement>
  142. <dependencies>
  143. <!-- spring-cloud-->
  144. <dependency>
  145. <groupId>org.springframework.cloud</groupId>
  146. <artifactId>spring-cloud-dependencies</artifactId>
  147. <version>${spring-cloud.version}</version>
  148. <type>pom</type>
  149. <scope>import</scope>
  150. </dependency>
  151. <!-- spring-cloud-alibaba -->
  152. <dependency>
  153. <groupId>com.alibaba.cloud</groupId>
  154. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  155. <version>${spring-cloud-alibaba.version}</version>
  156. <type>pom</type>
  157. <scope>import</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>io.seata</groupId>
  161. <artifactId>seata-spring-boot-starter</artifactId>
  162. <version>${seata.version}</version>
  163. </dependency>
  164. <!-- system 模块-->
  165. <dependency>
  166. <groupId>org.jeecgframework.boot</groupId>
  167. <artifactId>jeecg-system-biz</artifactId>
  168. <version>${jeecgboot.version}</version>
  169. </dependency>
  170. <!-- jeecg tools -->
  171. <dependency>
  172. <groupId>org.jeecgframework.boot</groupId>
  173. <artifactId>jeecg-boot-common</artifactId>
  174. <version>${jeecgboot.version}</version>
  175. </dependency>
  176. <!-- jeecg core -->
  177. <dependency>
  178. <groupId>org.jeecgframework.boot</groupId>
  179. <artifactId>jeecg-boot-base-core</artifactId>
  180. <version>${jeecgboot.version}</version>
  181. </dependency>
  182. <!-- system 单体 api -->
  183. <dependency>
  184. <groupId>org.jeecgframework.boot</groupId>
  185. <artifactId>jeecg-system-local-api</artifactId>
  186. <version>${jeecgboot.version}</version>
  187. </dependency>
  188. <!-- system 微服务 api -->
  189. <dependency>
  190. <groupId>org.jeecgframework.boot</groupId>
  191. <artifactId>jeecg-system-cloud-api</artifactId>
  192. <version>${jeecgboot.version}</version>
  193. </dependency>
  194. <!--微服务启动依赖-->
  195. <dependency>
  196. <groupId>org.jeecgframework.boot</groupId>
  197. <artifactId>jeecg-boot-starter-cloud</artifactId>
  198. <version>${jeecgboot.version}</version>
  199. </dependency>
  200. <!--xxl-job定时任务-->
  201. <dependency>
  202. <groupId>org.jeecgframework.boot</groupId>
  203. <artifactId>jeecg-boot-starter-job</artifactId>
  204. <version>${jeecgboot.version}</version>
  205. </dependency>
  206. <!--redis分布式锁-->
  207. <dependency>
  208. <groupId>org.jeecgframework.boot</groupId>
  209. <artifactId>jeecg-boot-starter-lock</artifactId>
  210. <version>${jeecgboot.version}</version>
  211. </dependency>
  212. <!--rabbitmq消息队列-->
  213. <dependency>
  214. <groupId>org.jeecgframework.boot</groupId>
  215. <artifactId>jeecg-boot-starter-rabbitmq</artifactId>
  216. <version>${jeecgboot.version}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.jeecgframework.boot</groupId>
  220. <artifactId>jeecg-boot-starter-rocketmq</artifactId>
  221. <version>${jeecgboot.version}</version>
  222. </dependency>
  223. <!--分库分表shardingsphere-->
  224. <dependency>
  225. <groupId>org.jeecgframework.boot</groupId>
  226. <artifactId>jeecg-boot-starter-shardingsphere</artifactId>
  227. <version>${jeecgboot.version}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.hibernate</groupId>
  231. <artifactId>hibernate-core</artifactId>
  232. <version>5.6.7.Final</version>
  233. <exclusions>
  234. <exclusion>
  235. <groupId>commons-collections</groupId>
  236. <artifactId>commons-collections</artifactId>
  237. </exclusion>
  238. </exclusions>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.jeecgframework.boot</groupId>
  242. <artifactId>hibernate-re</artifactId>
  243. <version>3.8.0.2</version>
  244. </dependency>
  245. <!--mongon db-->
  246. <dependency>
  247. <groupId>org.jeecgframework.boot</groupId>
  248. <artifactId>jeecg-boot-starter-mongon</artifactId>
  249. <version>${jeecgboot.version}</version>
  250. </dependency>
  251. <!-- 七牛云SDK -->
  252. <dependency>
  253. <groupId>com.qiniu</groupId>
  254. <artifactId>qiniu-java-sdk</artifactId>
  255. <version>${qiniu-java-sdk.version}</version>
  256. <exclusions>
  257. <exclusion>
  258. <artifactId>okhttp</artifactId>
  259. <groupId>com.squareup.okhttp3</groupId>
  260. </exclusion>
  261. </exclusions>
  262. </dependency>
  263. <!-- 百度SDK (OCR) -->
  264. <dependency>
  265. <groupId>com.baidu.aip</groupId>
  266. <artifactId>java-sdk</artifactId>
  267. <version>${baidu-java-sdk.version}</version>
  268. <exclusions>
  269. <exclusion>
  270. <groupId>org.slf4j</groupId>
  271. <artifactId>slf4j-simple</artifactId>
  272. </exclusion>
  273. </exclusions>
  274. </dependency>
  275. <!-- dom4j -->
  276. <dependency>
  277. <groupId>dom4j</groupId>
  278. <artifactId>dom4j</artifactId>
  279. <version>${dom4j.version}</version>
  280. </dependency>
  281. <!-- fileupload -->
  282. <dependency>
  283. <groupId>commons-fileupload</groupId>
  284. <artifactId>commons-fileupload</artifactId>
  285. <version>1.5</version>
  286. <exclusions>
  287. <exclusion>
  288. <artifactId>commons-io</artifactId>
  289. <groupId>commons-io</groupId>
  290. </exclusion>
  291. </exclusions>
  292. </dependency>
  293. <!-- justauth第三方登录 -->
  294. <dependency>
  295. <groupId>com.xkcoding.justauth</groupId>
  296. <artifactId>justauth-spring-boot-starter</artifactId>
  297. <version>${justauth-spring-boot-starter.version}</version>
  298. <exclusions>
  299. <exclusion>
  300. <artifactId>hutool-core</artifactId>
  301. <groupId>cn.hutool</groupId>
  302. </exclusion>
  303. <exclusion>
  304. <artifactId>fastjson</artifactId>
  305. <groupId>com.alibaba</groupId>
  306. </exclusion>
  307. </exclusions>
  308. </dependency>
  309. <dependency>
  310. <groupId>com.squareup.okhttp3</groupId>
  311. <artifactId>okhttp</artifactId>
  312. <version>4.4.1</version>
  313. </dependency>
  314. <!-- hutool工具类-->
  315. <dependency>
  316. <groupId>cn.hutool</groupId>
  317. <artifactId>hutool-core</artifactId>
  318. <version>${hutool.version}</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>cn.hutool</groupId>
  322. <artifactId>hutool-crypto</artifactId>
  323. <version>${hutool.version}</version>
  324. </dependency>
  325. <!--minio-->
  326. <dependency>
  327. <groupId>io.minio</groupId>
  328. <artifactId>minio</artifactId>
  329. <version>${minio.version}</version>
  330. <exclusions>
  331. <exclusion>
  332. <artifactId>okio</artifactId>
  333. <groupId>com.squareup.okio</groupId>
  334. </exclusion>
  335. <exclusion>
  336. <artifactId>okhttp</artifactId>
  337. <groupId>com.squareup.okhttp3</groupId>
  338. </exclusion>
  339. </exclusions>
  340. </dependency>
  341. <!-- 企业微信和钉钉 api -->
  342. <dependency>
  343. <groupId>org.jeecgframework</groupId>
  344. <artifactId>weixin4j</artifactId>
  345. <version>2.0.4</version>
  346. <exclusions>
  347. <exclusion>
  348. <artifactId>commons-beanutils</artifactId>
  349. <groupId>commons-beanutils</groupId>
  350. </exclusion>
  351. <exclusion>
  352. <artifactId>commons-lang</artifactId>
  353. <groupId>commons-lang</groupId>
  354. </exclusion>
  355. <exclusion>
  356. <artifactId>commons-collections</artifactId>
  357. <groupId>commons-collections</groupId>
  358. </exclusion>
  359. <exclusion>
  360. <artifactId>commons-logging</artifactId>
  361. <groupId>commons-logging</groupId>
  362. </exclusion>
  363. <exclusion>
  364. <artifactId>commons-io</artifactId>
  365. <groupId>commons-io</groupId>
  366. </exclusion>
  367. </exclusions>
  368. </dependency>
  369. <!-- minidao -->
  370. <dependency>
  371. <groupId>org.jeecgframework</groupId>
  372. <artifactId>minidao-spring-boot-starter</artifactId>
  373. <version>${minidao.version}</version>
  374. <exclusions>
  375. <exclusion>
  376. <artifactId>druid</artifactId>
  377. <groupId>com.alibaba</groupId>
  378. </exclusion>
  379. <exclusion>
  380. <artifactId>jsqlparser</artifactId>
  381. <groupId>com.github.jsqlparser</groupId>
  382. </exclusion>
  383. </exclusions>
  384. </dependency>
  385. <!-- 积木报表-->
  386. <dependency>
  387. <groupId>org.jeecgframework.jimureport</groupId>
  388. <artifactId>jimureport-spring-boot-starter</artifactId>
  389. <version>${jimureport-spring-boot-starter.version}</version>
  390. <exclusions>
  391. <exclusion>
  392. <groupId>com.alibaba</groupId>
  393. <artifactId>fastjson</artifactId>
  394. </exclusion>
  395. <exclusion>
  396. <artifactId>commons-lang</artifactId>
  397. <groupId>commons-lang</groupId>
  398. </exclusion>
  399. <exclusion>
  400. <artifactId>checker-qual</artifactId>
  401. <groupId>org.checkerframework</groupId>
  402. </exclusion>
  403. <exclusion>
  404. <artifactId>autopoi-web</artifactId>
  405. <groupId>org.jeecgframework</groupId>
  406. </exclusion>
  407. <exclusion>
  408. <artifactId>druid</artifactId>
  409. <groupId>com.alibaba</groupId>
  410. </exclusion>
  411. <exclusion>
  412. <artifactId>jsqlparser</artifactId>
  413. <groupId>com.github.jsqlparser</groupId>
  414. </exclusion>
  415. </exclusions>
  416. </dependency>
  417. <!-- mongo、redis和文件数据集支持包,按需引入 -->
  418. <dependency>
  419. <groupId>org.jeecgframework.jimureport</groupId>
  420. <artifactId>jimureport-nosql-starter</artifactId>
  421. <version>2.0.0</version>
  422. <exclusions>
  423. <exclusion>
  424. <groupId>org.apache.calcite</groupId>
  425. <artifactId>calcite-elasticsearch</artifactId>
  426. </exclusion>
  427. </exclusions>
  428. </dependency>
  429. <!-- 后台导出接口Echart图表支持包,按需引入 -->
  430. <dependency>
  431. <groupId>org.jeecgframework.jimureport</groupId>
  432. <artifactId>jimureport-echarts-starter</artifactId>
  433. <version>2.1.0</version>
  434. </dependency>
  435. <!-- 积木BI大屏和仪表盘 -->
  436. <dependency>
  437. <groupId>org.jeecgframework.jimureport</groupId>
  438. <artifactId>jimubi-spring-boot-starter</artifactId>
  439. <version>1.9.5</version>
  440. </dependency>
  441. <!-- AI集成 -->
  442. <dependency>
  443. <groupId>org.jeecgframework.boot</groupId>
  444. <artifactId>jeecg-boot-starter-chatgpt</artifactId>
  445. <version>3.8.1</version>
  446. </dependency>
  447. <!--flyway 支持 mysql5.7+、MariaDB10.3.16-->
  448. <!--mysql5.6,需要把版本号改成5.2.1-->
  449. <dependency>
  450. <groupId>org.flywaydb</groupId>
  451. <artifactId>flyway-core</artifactId>
  452. <version>7.15.0</version>
  453. </dependency>
  454. </dependencies>
  455. </dependencyManagement>
  456. <build>
  457. <plugins>
  458. <!-- 指定JDK编译版本 -->
  459. <plugin>
  460. <groupId>org.apache.maven.plugins</groupId>
  461. <artifactId>maven-compiler-plugin</artifactId>
  462. <configuration>
  463. <source>${java.version}</source>
  464. <target>${java.version}</target>
  465. <encoding>UTF-8</encoding>
  466. </configuration>
  467. </plugin>
  468. <!-- 打包跳过测试 -->
  469. <plugin>
  470. <groupId>org.apache.maven.plugins</groupId>
  471. <artifactId>maven-surefire-plugin</artifactId>
  472. <configuration>
  473. <skipTests>true</skipTests>
  474. </configuration>
  475. </plugin>
  476. <!-- 避免font文件的二进制文件格式压缩破坏 -->
  477. <plugin>
  478. <groupId>org.apache.maven.plugins</groupId>
  479. <artifactId>maven-resources-plugin</artifactId>
  480. <version>3.1.0</version>
  481. <configuration>
  482. <nonFilteredFileExtensions>
  483. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  484. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  485. <nonFilteredFileExtension>eot</nonFilteredFileExtension>
  486. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  487. <nonFilteredFileExtension>svg</nonFilteredFileExtension>
  488. <nonFilteredFileExtension>glb</nonFilteredFileExtension>
  489. <nonFilteredFileExtension>wasm</nonFilteredFileExtension>
  490. <nonFilteredFileExtension>ico</nonFilteredFileExtension>
  491. </nonFilteredFileExtensions>
  492. </configuration>
  493. </plugin>
  494. </plugins>
  495. <resources>
  496. <resource>
  497. <directory>src/main/resources</directory>
  498. <filtering>true</filtering>
  499. </resource>
  500. <resource>
  501. <directory>src/main/java</directory>
  502. <includes>
  503. <include>**/*.xml</include>
  504. <include>**/*.json</include>
  505. <include>**/*.ftl</include>
  506. </includes>
  507. </resource>
  508. </resources>
  509. </build>
  510. <distributionManagement>
  511. <repository>
  512. <id>jeecg</id>
  513. <name>jeecg Repository</name>
  514. <url>http://maven.jeecg.com:8090/nexus/content/repositories/jeecg</url>
  515. </repository>
  516. <snapshotRepository>
  517. <id>jeecg-snapshots</id>
  518. <name>jeecg Snapshot Repository</name>
  519. <url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>
  520. </snapshotRepository>
  521. </distributionManagement>
  522. <!-- 环境 -->
  523. <profiles>
  524. <!-- 开发 -->
  525. <profile>
  526. <id>dev</id>
  527. <activation>
  528. <!--默认激活配置-->
  529. <activeByDefault>true</activeByDefault>
  530. </activation>
  531. <properties>
  532. <!--当前环境-->
  533. <profile.name>dev</profile.name>
  534. <!--Nacos服务地址-->
  535. <config.server-addr>jeecg-boot-nacos:8848</config.server-addr>
  536. <!--Nacos配置中心命名空间,用于支持多环境.这里必须使用ID,不能使用名称,默认为空-->
  537. <config.namespace></config.namespace>
  538. <!--Nacos配置分组名称-->
  539. <config.group>DEFAULT_GROUP</config.group>
  540. <!--Nacos用户名-->
  541. <config.username></config.username>
  542. <!--Nacos密码-->
  543. <config.password></config.password>
  544. </properties>
  545. </profile>
  546. <!-- 测试Nacos开启鉴权、设置分组和命名空间
  547. <profile>
  548. <id>dev</id>
  549. <properties>
  550. <profile.name>dev</profile.name>
  551. <config.server-addr>jeecg-boot-nacos:8848</config.server-addr>
  552. <config.namespace>ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6</config.namespace>
  553. <config.group>JEECGDEV_GROUP</config.group>
  554. <config.username>nacos</config.username>
  555. <config.password>nacos</config.password>
  556. </properties>
  557. </profile> -->
  558. <!-- 测试 -->
  559. <profile>
  560. <id>test</id>
  561. <properties>
  562. <!--当前环境-->
  563. <profile.name>test</profile.name>
  564. <!--Nacos服务地址-->
  565. <config.server-addr>jeecg-boot-nacos:8848</config.server-addr>
  566. <!--Nacos配置中心命名空间,用于支持多环境.这里必须使用ID,不能使用名称,默认为空-->
  567. <config.namespace></config.namespace>
  568. <!--Nacos配置分组名称-->
  569. <config.group>DEFAULT_GROUP</config.group>
  570. <!--Nacos用户名-->
  571. <config.username></config.username>
  572. <!--Nacos密码-->
  573. <config.password></config.password>
  574. </properties>
  575. </profile>
  576. <!-- 生产 -->
  577. <profile>
  578. <id>prod</id>
  579. <properties>
  580. <!--当前环境-->
  581. <profile.name>prod</profile.name>
  582. <!--Nacos服务地址-->
  583. <config.server-addr>jeecg-boot-nacos:8848</config.server-addr>
  584. <!--Nacos配置中心命名空间,用于支持多环境.这里必须使用ID,不能使用名称,默认为空-->
  585. <config.namespace></config.namespace>
  586. <!--Nacos配置分组名称-->
  587. <config.group>DEFAULT_GROUP</config.group>
  588. <!--Nacos用户名-->
  589. <config.username></config.username>
  590. <!--Nacos密码-->
  591. <config.password></config.password>
  592. </properties>
  593. </profile>
  594. <!-- SpringCloud运行环境 -->
  595. <profile>
  596. <id>SpringCloud</id>
  597. <modules>
  598. <!-- 微服务模块 -->
  599. <module>jeecg-server-cloud</module>
  600. </modules>
  601. </profile>
  602. </profiles>
  603. </project>