pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.sp</groupId>
  7. <artifactId>sp-parent</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>sp-manager-push</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.sp</groupId>
  16. <artifactId>sp-common</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.github.xingePush</groupId>
  20. <artifactId>xinge</artifactId>
  21. <optional>true</optional>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.jpush.api</groupId>
  25. <artifactId>jpush-client</artifactId>
  26. <optional>true</optional>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. </dependencies>
  34. <repositories>
  35. <repository>
  36. <id>xingePush</id>
  37. <url>https://raw.githubusercontent.com/xingePush/maven-repository/snapshot/</url>
  38. </repository>
  39. </repositories>
  40. </project>