pom.xml 8.0 KB

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