pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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.1</version>
  14. <!--<version>0.0.1-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>RELEASE</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. <!--mysql 驱动-->
  37. <dependency>
  38. <groupId>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. </dependency>
  41. <!-- druid 连接池 -->
  42. <dependency>
  43. <groupId>com.alibaba</groupId>
  44. <artifactId>druid-spring-boot-starter</artifactId>
  45. <version>1.1.20</version>
  46. </dependency>
  47. <!-- java规则引擎(表达式解析器) -->
  48. <dependency>
  49. <groupId>com.googlecode.aviator</groupId>
  50. <artifactId>aviator</artifactId>
  51. <version>5.2.6</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-jdbc</artifactId>
  56. <version>RELEASE</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <!--fast json 版本-->
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>fastjson</artifactId>
  63. <version>1.2.69</version>
  64. </dependency>
  65. <!--负责从properties文件中读取配置信息-->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-configuration-processor</artifactId>
  69. <version>2.7.2</version>
  70. </dependency>
  71. <!--实现自动化配置-->
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-autoconfigure</artifactId>
  75. <version>2.7.2</version>
  76. </dependency>
  77. <!--生成sql脚本工具-->
  78. <dependency>
  79. <groupId>cn.hutool</groupId>
  80. <artifactId>hutool-all</artifactId>
  81. <version>5.3.5</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-io</groupId>
  85. <artifactId>commons-io</artifactId>
  86. <version>2.6</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.hibernate</groupId>
  94. <artifactId>hibernate-core</artifactId>
  95. <version>5.4.8.Final</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba.cloud</groupId>
  99. <version>2.2.0.RELEASE</version>
  100. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  101. </dependency>
  102. </dependencies>
  103. <distributionManagement>
  104. <repository>
  105. <id>jiayue-releases</id>
  106. <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-releases/</url>
  107. </repository>
  108. <snapshotRepository>
  109. <id>jiayue-snapshots</id>
  110. <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-snapshots/</url>
  111. </snapshotRepository>
  112. <!--<repository>-->
  113. <!--<id>jiayue-csc-releases</id>-->
  114. <!--<url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-csc-releases/</url>-->
  115. <!--</repository>-->
  116. <!--<snapshotRepository>-->
  117. <!--<id>jiayue-csc-snapshots</id>-->
  118. <!--<url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-csc-snapshots/</url>-->
  119. <!--</snapshotRepository>-->
  120. </distributionManagement>
  121. <build>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-maven-plugin</artifactId>
  126. <configuration>
  127. <skip>true</skip>
  128. <mainClass>com.syjy.calculate.CalculationApplication</mainClass>
  129. </configuration>
  130. <executions>
  131. <execution>
  132. <goals>
  133. <goal>repackage</goal>
  134. </goals>
  135. </execution>
  136. </executions>
  137. </plugin>
  138. <!--跳过test类-->
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-surefire-plugin</artifactId>
  142. <version>2.21.0</version>
  143. <configuration>
  144. <skipTests>true</skipTests>
  145. </configuration>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. </project>