2021-07-02 09:17:02 +00:00
|
|
|
<?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>notify</artifactId>
|
|
|
|
<groupId>com.cicdi</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>notify-wechat</artifactId>
|
2021-07-02 12:23:06 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2021-07-02 09:17:02 +00:00
|
|
|
<dependencies>
|
2021-07-02 12:23:06 +00:00
|
|
|
|
2021-07-02 09:17:02 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cicdi</groupId>
|
|
|
|
<artifactId>notify-core</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2021-07-02 12:23:06 +00:00
|
|
|
|
2021-07-02 09:17:02 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2021-07-02 12:23:06 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</dependency>
|
2021-07-02 17:50:40 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
</dependency>
|
2021-07-02 12:23:06 +00:00
|
|
|
</dependencies>
|
2021-07-02 09:17:02 +00:00
|
|
|
|
|
|
|
</project>
|