pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.8.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.lantone</groupId>
  12. <artifactId>emrais</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>emrais</name>
  15. <packaging>pom</packaging>
  16. <description>电子病历人工智能服务</description>
  17. <modules>
  18. <module>register-center</module>
  19. <module>config-center</module>
  20. <module>common</module>
  21. </modules>
  22. <properties>
  23. <java.version>1.8</java.version>
  24. <spring-cloud.version>Greenwich.SR3</spring-cloud.version>
  25. <mybatis-plus-boot-starter.version>3.2.0</mybatis-plus-boot-starter.version>
  26. <mysql-connector-java.version>5.1.6</mysql-connector-java.version>
  27. <ojdbc6.version>11.2.0.3</ojdbc6.version>
  28. <druid-spring-boot-starter.version>1.1.16</druid-spring-boot-starter.version>
  29. <mybatis-plus-generator.version>3.2.0</mybatis-plus-generator.version>
  30. <velocity-engine-core.version>2.1</velocity-engine-core.version>
  31. <freemarker.version>2.3.29</freemarker.version>
  32. <beetl.version>3.0.13.RELEASE</beetl.version>
  33. <lombok.version>1.18.8</lombok.version>
  34. <guava.version>28.1-jre</guava.version>
  35. <txlcn-tc.version>5.0.2.RELEASE</txlcn-tc.version>
  36. <txlcn-txmsg-netty.version>5.0.2.RELEASE</txlcn-txmsg-netty.version>
  37. </properties>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-dependencies</artifactId>
  43. <version>${spring-cloud.version}</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <!-- mybatisplus 依赖 -->
  48. <dependency>
  49. <groupId>com.baomidou</groupId>
  50. <artifactId>mybatis-plus-boot-starter</artifactId>
  51. <version>${mybatis-plus-boot-starter.version}</version>
  52. </dependency>
  53. <!-- mysql数据库依赖 依赖 -->
  54. <dependency>
  55. <groupId>mysql</groupId>
  56. <artifactId>mysql-connector-java</artifactId>
  57. <version>${mysql-connector-java.version}</version>
  58. </dependency>
  59. <!-- oracle数据库依赖 依赖 -->
  60. <dependency>
  61. <groupId>com.oracle</groupId>
  62. <artifactId>ojdbc6</artifactId>
  63. <version>${ojdbc6.version}</version>
  64. </dependency>
  65. <!-- 阿里druid连接池 依赖 -->
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>druid-spring-boot-starter</artifactId>
  69. <version>${druid-spring-boot-starter.version}</version>
  70. </dependency>
  71. <!-- mybatisplus 代码生成器所依赖的jar包 包括3种不同类型的模板依赖-->
  72. <dependency>
  73. <groupId>com.baomidou</groupId>
  74. <artifactId>mybatis-plus-generator</artifactId>
  75. <version>${mybatis-plus-generator.version}</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.velocity</groupId>
  80. <artifactId>velocity-engine-core</artifactId>
  81. <version>${velocity-engine-core.version}</version>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.freemarker</groupId>
  86. <artifactId>freemarker</artifactId>
  87. <version>${freemarker.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.ibeetl</groupId>
  91. <artifactId>beetl</artifactId>
  92. <version>${beetl.version}</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.projectlombok</groupId>
  97. <artifactId>lombok</artifactId>
  98. <version>${lombok.version}</version>
  99. <scope>provided</scope>
  100. <optional>true</optional>
  101. </dependency>
  102. <!-- 分布式事务框架 tx-lcn -->
  103. <dependency>
  104. <groupId>com.codingapi.txlcn</groupId>
  105. <artifactId>txlcn-tc</artifactId>
  106. <version>${txlcn-tc.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.codingapi.txlcn</groupId>
  110. <artifactId>txlcn-txmsg-netty</artifactId>
  111. <version>${txlcn-txmsg-netty.version}</version>
  112. </dependency>
  113. </dependencies>
  114. </dependencyManagement>
  115. <dependencies>
  116. <dependency>
  117. <groupId>com.google.guava</groupId>
  118. <artifactId>guava</artifactId>
  119. <version>${guava.version}</version>
  120. </dependency>
  121. </dependencies>
  122. <build>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-maven-plugin</artifactId>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </project>