123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.sp</groupId>
- <artifactId>sp-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>sp-manager-push</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>com.sp</groupId>
- <artifactId>sp-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.xingePush</groupId>
- <artifactId>xinge</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>cn.jpush.api</groupId>
- <artifactId>jpush-client</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>xingePush</id>
- <url>https://raw.githubusercontent.com/xingePush/maven-repository/snapshot/</url>
- </repository>
- </repositories>
- </project>
|