iotkit-parent/protocol-gateway/http-biz-component/pom.xml

44 lines
1.2 KiB
XML
Raw Normal View History

2022-03-03 09:24:41 +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>protocol-gateway</artifactId>
2022-03-03 09:24:41 +00:00
<groupId>cc.iotkit</groupId>
<version>0.1.0-SNAPSHOT</version>
2022-03-03 09:24:41 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>http-biz-component</artifactId>
2022-03-03 09:24:41 +00:00
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-proxy</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-client</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>component</artifactId>
</dependency>
2022-03-03 09:24:41 +00:00
</dependencies>
</project>