pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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>system-controller</artifactId>
  5. <version>0.0.1</version>
  6. <name>system-controller</name>
  7. <properties>
  8. <project.name>${parent.name}</project.name>
  9. </properties>
  10. <parent>
  11. <artifactId>system</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>system-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. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-test</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-web</artifactId>
  55. <version>5.2.7.RELEASE</version>
  56. </dependency>
  57. <!-- <dependency>-->
  58. <!-- <groupId>org.springframework.cloud</groupId>-->
  59. <!-- <artifactId>spring-cloud-starter</artifactId>-->
  60. <!-- </dependency>-->
  61. <!-- <dependency>-->
  62. <!-- <groupId>org.springframework.cloud</groupId>-->
  63. <!-- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>-->
  64. <!-- </dependency>-->
  65. <!-- <dependency>-->
  66. <!-- <groupId>org.springframework.cloud</groupId>-->
  67. <!-- <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>-->
  68. <!-- <exclusions>-->
  69. <!-- <exclusion>-->
  70. <!-- <artifactId>HdrHistogram</artifactId>-->
  71. <!-- <groupId>org.hdrhistogram</groupId>-->
  72. <!-- </exclusion>-->
  73. <!-- </exclusions>-->
  74. <!-- </dependency>-->
  75. <!-- <dependency>-->
  76. <!-- <groupId>org.springframework.cloud</groupId>-->
  77. <!-- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>-->
  78. <!-- <exclusions>-->
  79. <!-- <exclusion>-->
  80. <!-- <artifactId>HdrHistogram</artifactId>-->
  81. <!-- <groupId>org.hdrhistogram</groupId>-->
  82. <!-- </exclusion>-->
  83. <!-- </exclusions>-->
  84. <!-- </dependency>-->
  85. <!-- <dependency>-->
  86. <!-- <groupId>org.springframework.cloud</groupId>-->
  87. <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
  88. <!-- <exclusions>-->
  89. <!-- <exclusion>-->
  90. <!-- <artifactId>HdrHistogram</artifactId>-->
  91. <!-- <groupId>org.hdrhistogram</groupId>-->
  92. <!-- </exclusion>-->
  93. <!-- </exclusions>-->
  94. <!-- </dependency>-->
  95. </dependencies>
  96. <build>
  97. <finalName>${parent.artifactId}</finalName>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-maven-plugin</artifactId>
  102. </plugin>
  103. <plugin>
  104. <groupId>org.apache.maven.plugins</groupId>
  105. <artifactId>maven-surefire-plugin</artifactId>
  106. <configuration>
  107. <testFailureIgnore>true</testFailureIgnore>
  108. <skip>true</skip>
  109. </configuration>
  110. </plugin>
  111. </plugins>
  112. <resources>
  113. <resource>
  114. <directory>src/main/java</directory>
  115. <includes>
  116. <include>**/*.xml</include>
  117. </includes>
  118. </resource>
  119. <resource>
  120. <directory>src/main/resources</directory>
  121. <includes>
  122. <include>**/*.xml</include>
  123. <include>**/*.properties</include>
  124. <include>**/*.yml</include>
  125. </includes>
  126. <filtering>true</filtering>
  127. </resource>
  128. </resources>
  129. </build>
  130. </project>