pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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.7.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.syjy</groupId>
  12. <artifactId>calculation-spring-boot-starter</artifactId>
  13. <version>0.0.40</version>
  14. <!-- <version>0.0.40-SNAPSHOT</version>-->
  15. <name>calculation</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <version>1.18.24</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.highgo</groupId>
  38. <artifactId>HgdbJdbc</artifactId>
  39. <version>6.2.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.highgo.hibernate</groupId>
  43. <artifactId>hgdb-hibernate-dialect</artifactId>
  44. <version>6.1.6</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.postgresql</groupId>
  48. <artifactId>postgresql</artifactId>
  49. <version>42.5.0</version> <!-- 请使用最新的稳定版本 -->
  50. </dependency>
  51. <!--mysql 驱动-->
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. </dependency>
  56. <!--本地使用时候放开-->
  57. <dependency>
  58. <groupId>kingbasejdbc4</groupId>
  59. <artifactId>kingbasejdbc4</artifactId>
  60. <version>1</version>
  61. </dependency>
  62. <!--发布时候放开-->
  63. <!-- <dependency>-->
  64. <!-- <groupId>com.alibaba.cloud</groupId>-->
  65. <!-- <version>2.2.0.RELEASE</version>-->
  66. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
  67. <!-- </dependency>-->
  68. <!-- druid 连接池 -->
  69. <dependency>
  70. <groupId>com.alibaba</groupId>
  71. <artifactId>druid-spring-boot-starter</artifactId>
  72. <version>1.1.20</version>
  73. </dependency>
  74. <!-- java规则引擎(表达式解析器) -->
  75. <dependency>
  76. <groupId>com.googlecode.aviator</groupId>
  77. <artifactId>aviator</artifactId>
  78. <version>5.2.6</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-jdbc</artifactId>
  83. <version>3.0.1</version>
  84. <scope>compile</scope>
  85. </dependency>
  86. <!--fast json 版本-->
  87. <dependency>
  88. <groupId>com.alibaba</groupId>
  89. <artifactId>fastjson</artifactId>
  90. <version>1.2.69</version>
  91. </dependency>
  92. <!--负责从properties文件中读取配置信息-->
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-configuration-processor</artifactId>
  96. <version>2.7.2</version>
  97. </dependency>
  98. <!--实现自动化配置-->
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-autoconfigure</artifactId>
  102. <version>2.7.2</version>
  103. </dependency>
  104. <!--生成sql脚本工具-->
  105. <dependency>
  106. <groupId>cn.hutool</groupId>
  107. <artifactId>hutool-all</artifactId>
  108. <version>5.3.5</version>
  109. </dependency>
  110. <!--hutool的poi包 https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  111. <dependency>
  112. <groupId>org.apache.poi</groupId>
  113. <artifactId>poi-ooxml</artifactId>
  114. <version>4.1.2</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-io</groupId>
  118. <artifactId>commons-io</artifactId>
  119. <version>2.6</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.hibernate</groupId>
  127. <artifactId>hibernate-core</artifactId>
  128. <version>5.4.8.Final</version>
  129. </dependency>
  130. </dependencies>
  131. <distributionManagement>
  132. <repository>
  133. <id>jiayue-releases</id>
  134. <name>Nexus Release Repository</name>
  135. <url>http://49.4.68.219:8888/repository/jiayue-releases/</url>
  136. </repository>
  137. <snapshotRepository>
  138. <id>jiayue-snapshots</id>
  139. <name>Nexus Snapshot Repository</name>
  140. <url>http://49.4.68.219:8888/repository/jiayue-snapshots/</url>
  141. </snapshotRepository>
  142. <!--csc-->
  143. <!-- <repository>-->
  144. <!-- <id>jiayue-csc-releases</id>-->
  145. <!-- <url>http://49.4.68.219:8888/repository/jiayue-csc-releases/</url>-->
  146. <!-- </repository>-->
  147. <!-- <snapshotRepository>-->
  148. <!-- <id>jiayue-csc-snapshots</id>-->
  149. <!-- <url>http://49.4.68.219:8888/repository/jiayue-csc-snapshots/</url>-->
  150. <!-- </snapshotRepository>-->
  151. </distributionManagement>
  152. <build>
  153. <plugins>
  154. <plugin>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-maven-plugin</artifactId>
  157. <!--独立打包作为服务和对外接口时候需要注释,上传Maven取消注释-->
  158. <!-- <configuration>-->
  159. <!-- <skip>true</skip>-->
  160. <!-- <mainClass>com.syjy.calculate.CalculationApplication</mainClass>-->
  161. <!-- </configuration>-->
  162. <executions>
  163. <execution>
  164. <goals>
  165. <goal>repackage</goal>
  166. </goals>
  167. </execution>
  168. </executions>
  169. </plugin>
  170. <!--跳过test类-->
  171. <plugin>
  172. <groupId>org.apache.maven.plugins</groupId>
  173. <artifactId>maven-surefire-plugin</artifactId>
  174. <version>2.21.0</version>
  175. <configuration>
  176. <skipTests>true</skipTests>
  177. </configuration>
  178. </plugin>
  179. </plugins>
  180. </build>
  181. </project>