pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>platform</artifactId>
  7. <groupId>com.zcxk</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>message</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-amqp</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.amqp</groupId>
  19. <artifactId>spring-rabbit-test</artifactId>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.zcxk</groupId>
  24. <artifactId>common</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>org.springframework.security.oauth.boot</groupId>
  29. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-websocket</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.jpush.api</groupId>
  39. <artifactId>jiguang-common</artifactId>
  40. <version>1.0.8</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.jpush.api</groupId>
  44. <artifactId>jpush-client</artifactId>
  45. <version>3.3.2</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.cloud</groupId>
  49. <artifactId>spring-cloud-starter-openfeign</artifactId>
  50. </dependency>
  51. </dependencies>
  52. <properties>
  53. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  54. <maven.build.timestamp.format>yyyy-MM-dd_HH_mm</maven.build.timestamp.format>
  55. </properties>
  56. <build>
  57. <finalName>${project.artifactId}-${maven.build.timestamp}</finalName>
  58. </build>
  59. </project>