notify-component/notify-dingtalk/pom.xml

39 lines
1.1 KiB
XML
Raw Normal View History

2021-07-02 17:05:08 +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>
2022-08-17 14:01:32 +00:00
<groupId>com.simaek</groupId>
2021-10-25 08:02:31 +00:00
<version>0.1.0</version>
2021-07-02 17:05:08 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>notify-dingtalk</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
2021-07-02 18:07:28 +00:00
2021-07-02 17:05:08 +00:00
<dependency>
2022-08-17 14:01:32 +00:00
<groupId>com.simaek</groupId>
2021-07-02 17:05:08 +00:00
<artifactId>notify-core</artifactId>
2021-10-25 08:02:31 +00:00
<version>0.1.0</version>
2021-07-02 17:05:08 +00:00
</dependency>
2021-07-02 18:07:28 +00:00
2021-07-02 17:05:08 +00:00
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
2021-07-02 18:07:28 +00:00
2021-07-02 17:05:08 +00:00
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
2021-07-02 18:07:28 +00:00
2021-07-02 17:05:08 +00:00
</dependencies>
</project>