pom.xml 3.4 KB

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