pom.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <artifactId>usky-power-controller</artifactId>
  5. <version>0.0.1</version>
  6. <name>usky-power-controller</name>
  7. <properties>
  8. <project.name>${parent.name}</project.name>
  9. </properties>
  10. <parent>
  11. <artifactId>usky-power</artifactId>
  12. <groupId>com.bizmatics</groupId>
  13. <version>0.0.1</version>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.bizmatics</groupId>
  18. <artifactId>usky-power-service</artifactId>
  19. <version>0.0.1</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-logging</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-aop</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>druid-spring-boot-starter</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-log4j2</artifactId>
  46. <exclusions>
  47. <exclusion>
  48. <groupId>org.apache.logging.log4j</groupId>
  49. <artifactId>log4j-api</artifactId>
  50. </exclusion>
  51. <exclusion>
  52. <groupId>org.apache.logging.log4j</groupId>
  53. <artifactId>log4j-core</artifactId>
  54. </exclusion>
  55. <exclusion>
  56. <groupId>org.apache.logging.log4j</groupId>
  57. <artifactId>log4j-jul</artifactId>
  58. </exclusion>
  59. <exclusion>
  60. <groupId>org.apache.logging.log4j</groupId>
  61. <artifactId>log4j-slf4j-impl</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.logging.log4j</groupId>
  67. <artifactId>log4j-api</artifactId>
  68. <version>2.17.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.logging.log4j</groupId>
  72. <artifactId>log4j-core</artifactId>
  73. <version>2.17.1</version>
  74. <exclusions>
  75. <exclusion>
  76. <artifactId>log4j-api</artifactId>
  77. <groupId>org.apache.logging.log4j</groupId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.logging.log4j</groupId>
  83. <artifactId>log4j-jul</artifactId>
  84. <version>2.17.1</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.logging.log4j</groupId>
  88. <artifactId>log4j-slf4j-impl</artifactId>
  89. <version>2.17.1</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-test</artifactId>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework</groupId>
  98. <artifactId>spring-web</artifactId>
  99. <version>5.2.7.RELEASE</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.alibaba</groupId>
  103. <artifactId>fastjson</artifactId>
  104. <version>1.2.4</version>
  105. </dependency>
  106. <!-- <dependency>-->
  107. <!-- <groupId>org.springframework.cloud</groupId>-->
  108. <!-- <artifactId>spring-cloud-starter</artifactId>-->
  109. <!-- </dependency>-->
  110. <!-- <dependency>-->
  111. <!-- <groupId>org.springframework.cloud</groupId>-->
  112. <!-- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>-->
  113. <!-- </dependency>-->
  114. <!-- <dependency>-->
  115. <!-- <groupId>org.springframework.cloud</groupId>-->
  116. <!-- <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>-->
  117. <!-- <exclusions>-->
  118. <!-- <exclusion>-->
  119. <!-- <artifactId>HdrHistogram</artifactId>-->
  120. <!-- <groupId>org.hdrhistogram</groupId>-->
  121. <!-- </exclusion>-->
  122. <!-- </exclusions>-->
  123. <!-- </dependency>-->
  124. <!-- <dependency>-->
  125. <!-- <groupId>org.springframework.cloud</groupId>-->
  126. <!-- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>-->
  127. <!-- <exclusions>-->
  128. <!-- <exclusion>-->
  129. <!-- <artifactId>HdrHistogram</artifactId>-->
  130. <!-- <groupId>org.hdrhistogram</groupId>-->
  131. <!-- </exclusion>-->
  132. <!-- </exclusions>-->
  133. <!-- </dependency>-->
  134. <!-- <dependency>-->
  135. <!-- <groupId>org.springframework.cloud</groupId>-->
  136. <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
  137. <!-- <exclusions>-->
  138. <!-- <exclusion>-->
  139. <!-- <artifactId>HdrHistogram</artifactId>-->
  140. <!-- <groupId>org.hdrhistogram</groupId>-->
  141. <!-- </exclusion>-->
  142. <!-- </exclusions>-->
  143. <!-- </dependency>-->
  144. <dependency>
  145. <groupId>com.baomidou</groupId>
  146. <artifactId>mybatis-plus-generator</artifactId>
  147. <version>3.3.0</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.apache.velocity</groupId>
  151. <artifactId>velocity-engine-core</artifactId>
  152. <version>2.1</version>
  153. </dependency>
  154. </dependencies>
  155. <build>
  156. <finalName>${parent.artifactId}</finalName>
  157. <plugins>
  158. <plugin>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-maven-plugin</artifactId>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-surefire-plugin</artifactId>
  165. <configuration>
  166. <testFailureIgnore>true</testFailureIgnore>
  167. <skip>true</skip>
  168. </configuration>
  169. </plugin>
  170. </plugins>
  171. <resources>
  172. <resource>
  173. <directory>src/main/java</directory>
  174. <includes>
  175. <include>**/*.xml</include>
  176. </includes>
  177. </resource>
  178. <resource>
  179. <directory>src/main/resources</directory>
  180. <includes>
  181. <include>**/*.xml</include>
  182. <include>**/*.properties</include>
  183. <include>**/*.yml</include>
  184. </includes>
  185. <filtering>true</filtering>
  186. </resource>
  187. </resources>
  188. </build>
  189. </project>