pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.huaxu</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.huaxu</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. </dependencies>
  48. <properties>
  49. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  50. <maven.build.timestamp.format>yyyy-MM-dd_HH_mm</maven.build.timestamp.format>
  51. </properties>
  52. <build>
  53. <finalName>${project.artifactId}-${maven.build.timestamp}</finalName>
  54. </build>
  55. </project>