pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. <parent>
  6. <artifactId>tzy</artifactId>
  7. <groupId>com.tzy</groupId>
  8. <version>4.5.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>poyi-app</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.tzy</groupId>
  15. <artifactId>poyi-service</artifactId>
  16. <version>${tzy.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.tzy</groupId>
  20. <artifactId>poyee-order</artifactId>
  21. <version>${tzy.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.codehaus.janino</groupId>
  25. <artifactId>janino</artifactId>
  26. <version>3.0.12</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.sndyuk</groupId>
  30. <artifactId>logback-more-appenders</artifactId>
  31. <version>1.8.5</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.fluentd</groupId>
  35. <artifactId>fluent-logger</artifactId>
  36. <version>0.3.4</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.junit.jupiter</groupId>
  40. <artifactId>junit-jupiter</artifactId>
  41. <version>RELEASE</version>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-test-autoconfigure</artifactId>
  52. <version>2.1.17.RELEASE</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-actuator</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.micrometer</groupId>
  61. <artifactId>micrometer-registry-prometheus</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.rabbitmq</groupId>
  65. <artifactId>amqp-client</artifactId>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. <version>2.1.1.RELEASE</version>
  74. <configuration>
  75. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  76. <includeSystemScope>true</includeSystemScope>
  77. </configuration>
  78. <executions>
  79. <execution>
  80. <goals>
  81. <goal>repackage</goal>
  82. </goals>
  83. </execution>
  84. </executions>
  85. </plugin>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-war-plugin</artifactId>
  89. <version>3.0.0</version>
  90. <configuration>
  91. <failOnMissingWebXml>false</failOnMissingWebXml>
  92. <warName>${project.artifactId}</warName>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. <finalName>${project.artifactId}</finalName>
  97. </build>
  98. </project>