123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>ruoyi</artifactId>
- <groupId>com.ruoyi</groupId>
- <version>4.6.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>ruoyi-hndj</artifactId>
- <scm>
- <connection>scm:git:https://github.com/GetuiLaboratory/getui-pushapi-java-client-v2.git</connection>
- <developerConnection>scm:git:ssh://github.com:GetuiLaboratory/getui-pushapi-java-client-v2.git</developerConnection>
- <url>https://github.com/GetuiLaboratory/getui-pushapi-java-client-v2</url>
- </scm>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ruoyi</groupId>
- <artifactId>ruoyi-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ruoyi</groupId>
- <artifactId>ruoyi-framework</artifactId>
- </dependency>
- <dependency>
- <groupId>com.ruoyi</groupId>
- <artifactId>ruoyi-system</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.6.3</version>
- </dependency>
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>3.6</version>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.60</version>
- <scope>compile</scope>
- </dependency>
- <!--个推api-->
- <!-- https://mvnrepository.com/artifact/com.gexin.platform/gexin-rp-sdk-http -->
- <dependency>
- <groupId>com.gexin.platform</groupId>
- <artifactId>gexin-rp-sdk-http</artifactId>
- <version>4.1.2.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.gexin.platform/gexin-rp-fastjson -->
- <dependency>
- <groupId>com.gexin.platform</groupId>
- <artifactId>gexin-rp-fastjson</artifactId>
- <version>1.0.0.7</version>
- </dependency>
- <dependency>
- <groupId>com.gexin.platform</groupId>
- <artifactId>gexin-rp-sdk-base</artifactId>
- <version>4.0.0.38</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.gexin.platform/gexin-rp-sdk-template -->
- <dependency>
- <groupId>com.gexin.platform</groupId>
- <artifactId>gexin-rp-sdk-template</artifactId>
- <version>4.0.0.30</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.16.10</version>
- </dependency>
- <dependency>
- <groupId>org.json</groupId>
- <artifactId>json</artifactId>
- <version>20090211</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>1.2.3</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.13</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>2.8.6</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>19.0</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <!-- https://mvnrepository.com/artifact/com.gexin.platform/gexin-rp-sdk-base -->
- <repositories>
- <repository>
- <id>getui-nexus</id>
- <url>http://mvn.gt.igexin.com/nexus/content/repositories/releases/</url>
- </repository>
- </repositories>
- </project>
|