2023-05-08 10:29:42 +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>
|
2023-05-17 08:24:21 +00:00
|
|
|
<artifactId>iot-module</artifactId>
|
2023-05-08 10:29:42 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>iot-message-notify</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
2023-05-08 15:33:32 +00:00
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-web-client</artifactId>
|
2023-05-08 10:29:42 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2023-05-08 15:33:32 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2023-05-08 10:29:42 +00:00
|
|
|
</dependency>
|
2023-05-09 15:41:46 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
</dependency>
|
2023-05-08 10:29:42 +00:00
|
|
|
|
|
|
|
<dependency>
|
2023-05-08 15:33:32 +00:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2023-05-08 10:29:42 +00:00
|
|
|
</dependency>
|
|
|
|
|
2023-05-08 15:33:32 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
</dependency>
|
2023-05-08 10:29:42 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2023-05-15 00:31:02 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2023-06-06 07:11:30 +00:00
|
|
|
<encoding>utf8</encoding>
|
2023-05-15 00:31:02 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-06-06 07:11:30 +00:00
|
|
|
</project>
|