iotkit-parent/iot-common/iot-common-doc/pom.xml

55 lines
1.7 KiB
XML
Raw Normal View History

2023-05-11 15:01: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">
2023-05-15 00:31:02 +00:00
<parent>
<artifactId>iot-common</artifactId>
2023-05-11 15:01:08 +00:00
<groupId>cc.iotkit</groupId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2023-05-15 00:31:02 +00:00
<artifactId>iot-common-doc</artifactId>
2023-05-11 15:01:08 +00:00
<dependencies>
<!-- SpringBoot Web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
2023-06-04 12:31:53 +00:00
<exclusions>
<exclusion>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
</exclusion>
</exclusions>
2023-05-11 15:01:08 +00:00
</dependency>
</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>
</configuration>
</plugin>
</plugins>
</build>
2023-05-11 15:01:08 +00:00
</project>