pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.tzld.piaoquan</groupId>
  8. <artifactId>recommend-feature</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>recommend-feature-service</artifactId>
  12. <name>recommend-feature-service</name>
  13. <description>recommend-feature-service</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-commons</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.junit.vintage</groupId>
  34. <artifactId>junit-vintage-engine</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-redis</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.ctrip.framework.apollo</groupId>
  44. <artifactId>apollo-client</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.alibaba.csp</groupId>
  48. <artifactId>sentinel-datasource-apollo</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba.cloud</groupId>
  52. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.aliyun.openservices</groupId>
  56. <artifactId>aliyun-log-logback-appender</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>net.devh</groupId>
  60. <artifactId>grpc-server-spring-boot-starter</artifactId>
  61. <version>2.9.0.RELEASE</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.tzld.piaoquan</groupId>
  65. <artifactId>recommend-feature-client</artifactId>
  66. <version>1.1.19</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.google.protobuf</groupId>
  70. <artifactId>protobuf-java</artifactId>
  71. <version>3.12.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.sun.jersey</groupId>
  75. <artifactId>jersey-client</artifactId>
  76. <version>1.9.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.sun.jersey</groupId>
  80. <artifactId>jersey-core</artifactId>
  81. <version>1.9.1</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.sun.jersey.contribs</groupId>
  85. <artifactId>jersey-apache-client4</artifactId>
  86. <version>1.9.1</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.tzld.piaoquan</groupId>
  90. <artifactId>recommend-feature-common</artifactId>
  91. <version>${common.version}</version>
  92. </dependency>
  93. </dependencies>
  94. <build>
  95. <finalName>recommend-feature-service</finalName>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. <configuration>
  101. <mainClass>com.tzld.piaoquan.recommend.feature.Application</mainClass>
  102. <layout>ZIP</layout>
  103. </configuration>
  104. <executions>
  105. <execution>
  106. <goals>
  107. <goal>repackage</goal>
  108. </goals>
  109. </execution>
  110. </executions>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. </project>