pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <!--common-->
  14. <dependency>
  15. <groupId>org.springframework.cloud</groupId>
  16. <artifactId>spring-cloud-starter-oauth2</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.security.oauth</groupId>
  20. <artifactId>spring-security-oauth2</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-amqp</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.amqp</groupId>
  28. <artifactId>spring-rabbit-test</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.zcxk</groupId>
  33. <artifactId>common</artifactId>
  34. <version>1.0-SNAPSHOT</version>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.springframework.security.oauth.boot</groupId>
  38. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-websocket</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.jpush.api</groupId>
  48. <artifactId>jiguang-common</artifactId>
  49. <version>1.0.8</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.jpush.api</groupId>
  53. <artifactId>jpush-client</artifactId>
  54. <version>3.3.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.cloud</groupId>
  58. <artifactId>spring-cloud-starter-openfeign</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.commons</groupId>
  62. <artifactId>commons-pool2</artifactId>
  63. </dependency>
  64. </dependencies>
  65. <properties>
  66. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  67. <maven.build.timestamp.format>yyyy-MM-dd_HH_mm</maven.build.timestamp.format>
  68. </properties>
  69. <build>
  70. <finalName>${project.artifactId}-${maven.build.timestamp}</finalName>
  71. </build>
  72. </project>