pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. <artifactId>mhfire-controller</artifactId>
  6. <version>0.0.1</version>
  7. <name>mhfire-controller</name>
  8. <properties>
  9. <project.name>${parent.name}</project.name>
  10. </properties>
  11. <parent>
  12. <artifactId>mhfire</artifactId>
  13. <groupId>com.bizmatics</groupId>
  14. <version>0.0.1</version>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.bizmatics</groupId>
  19. <artifactId>mhfire-service</artifactId>
  20. <version>0.0.1</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. <exclusions>
  26. <exclusion>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-logging</artifactId>
  29. </exclusion>
  30. </exclusions>
  31. </dependency>
  32. <!-- <dependency>-->
  33. <!-- <groupId>org.springframework.boot</groupId>-->
  34. <!-- <artifactId>spring-boot-starter-actuator</artifactId>-->
  35. <!-- <exclusions>-->
  36. <!-- <exclusion>-->
  37. <!-- <groupId>org.springframework.boot</groupId>-->
  38. <!-- <artifactId>spring-boot-starter-logging</artifactId>-->
  39. <!-- </exclusion>-->
  40. <!-- </exclusions>-->
  41. <!-- </dependency>-->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-aop</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>mysql</groupId>
  48. <artifactId>mysql-connector-java</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid-spring-boot-starter</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-log4j2</artifactId>
  57. <version>2.6.2</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-test</artifactId>
  62. <scope>test</scope>
  63. <exclusions>
  64. <exclusion>
  65. <artifactId>asm</artifactId>
  66. <groupId>org.ow2.asm</groupId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-web</artifactId>
  73. <version>5.2.7.RELEASE</version>
  74. </dependency>
  75. <!-- <dependency>-->
  76. <!-- <groupId>org.springframework.cloud</groupId>-->
  77. <!-- <artifactId>spring-cloud-starter</artifactId>-->
  78. <!-- </dependency>-->
  79. <!-- <dependency>-->
  80. <!-- <groupId>org.springframework.cloud</groupId>-->
  81. <!-- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>-->
  82. <!-- </dependency>-->
  83. <!-- <dependency>-->
  84. <!-- <groupId>org.springframework.cloud</groupId>-->
  85. <!-- <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>-->
  86. <!-- <exclusions>-->
  87. <!-- <exclusion>-->
  88. <!-- <artifactId>HdrHistogram</artifactId>-->
  89. <!-- <groupId>org.hdrhistogram</groupId>-->
  90. <!-- </exclusion>-->
  91. <!-- </exclusions>-->
  92. <!-- </dependency>-->
  93. <!-- <dependency>-->
  94. <!-- <groupId>org.springframework.cloud</groupId>-->
  95. <!-- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>-->
  96. <!-- <exclusions>-->
  97. <!-- <exclusion>-->
  98. <!-- <artifactId>HdrHistogram</artifactId>-->
  99. <!-- <groupId>org.hdrhistogram</groupId>-->
  100. <!-- </exclusion>-->
  101. <!-- </exclusions>-->
  102. <!-- </dependency>-->
  103. <dependency>
  104. <groupId>org.springframework.cloud</groupId>
  105. <artifactId>spring-cloud-starter-openfeign</artifactId>
  106. <exclusions>
  107. <exclusion>
  108. <artifactId>HdrHistogram</artifactId>
  109. <groupId>org.hdrhistogram</groupId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.baomidou</groupId>
  115. <artifactId>mybatis-plus-generator</artifactId>
  116. <version>3.3.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.velocity</groupId>
  120. <artifactId>velocity-engine-core</artifactId>
  121. <version>2.1</version>
  122. </dependency>
  123. </dependencies>
  124. <build>
  125. <finalName>${parent.artifactId}</finalName>
  126. <plugins>
  127. <plugin>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-maven-plugin</artifactId>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-surefire-plugin</artifactId>
  134. <configuration>
  135. <testFailureIgnore>true</testFailureIgnore>
  136. <skip>true</skip>
  137. </configuration>
  138. </plugin>
  139. </plugins>
  140. <resources>
  141. <resource>
  142. <directory>src/main/java</directory>
  143. <includes>
  144. <include>**/*.xml</include>
  145. </includes>
  146. <filtering>false</filtering>
  147. </resource>
  148. <resource>
  149. <directory>src/main/resources</directory>
  150. <includes>
  151. <include>**/*.xml</include>
  152. <include>**/*.properties</include>
  153. <include>**/*.yml</include>
  154. </includes>
  155. <filtering>true</filtering>
  156. </resource>
  157. </resources>
  158. </build>
  159. </project>