123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <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/maven-v4_0_0.xsd">
- <parent>
- <groupId>com.xmzs</groupId>
- <artifactId>ruoyi-common</artifactId>
- <version>${revision}</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>ruoyi-common-wechat</artifactId>
- <description>
- ruoyi-common-wechat 微信服务
- </description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!-- emoji -->
- <dependency>
- <groupId>com.vdurmont</groupId>
- <artifactId>emoji-java</artifactId>
- <version>3.2.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/javax.activation/activation -->
- <dependency>
- <groupId>javax.activation</groupId>
- <artifactId>activation</artifactId>
- <version>1.1.1</version>
- </dependency>
- <!-- qq -->
- <dependency>
- <groupId>net.mamoe</groupId>
- <artifactId>mirai-core-jvm</artifactId>
- <version>2.16.0</version>
- </dependency>
- <dependency>
- <groupId>com.xmzs</groupId>
- <artifactId>ruoyi-common-json</artifactId>
- </dependency>
- </dependencies>
- </project>
|