iotkit-parent/iot-module/iot-contribution/pom.xml

139 lines
4.8 KiB
XML
Raw Normal View History

2023-07-04 05:32:19 +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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>iot-module</artifactId>
<groupId>cc.iotkit</groupId>
<version>${revision}</version>
</parent>
<artifactId>iot-contribution</artifactId>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-model</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-core</artifactId>
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-08-07 00:32:23 +00:00
<artifactId>iot-data-serviceImpl-rdb</artifactId>
2023-07-04 05:32:19 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-08-07 00:32:23 +00:00
<artifactId>iot-data-serviceImpl-cache</artifactId>
2023-07-04 05:32:19 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-08-07 00:32:23 +00:00
<artifactId>iot-common-web</artifactId>
2023-07-04 05:32:19 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-08-07 00:32:23 +00:00
<artifactId>iot-common-doc</artifactId>
2023-07-04 05:32:19 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-08-07 00:32:23 +00:00
<artifactId>iot-common-satoken</artifactId>
2023-07-04 05:32:19 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-08-07 00:32:23 +00:00
<artifactId>iot-common-log</artifactId>
2023-07-04 05:32:19 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2023-08-07 00:32:23 +00:00
<artifactId>iot-common-excel</artifactId>
2023-07-04 05:32:19 +00:00
</dependency>
2023-08-07 00:32:23 +00:00
<!--====================第三方库===================-->
2023-07-04 05:32:19 +00:00
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2023-07-04 05:32:19 +00:00
</dependency>
<dependency>
2023-08-07 00:32:23 +00:00
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
2023-07-04 05:32:19 +00:00
</dependency>
<dependency>
<groupId>io.github.linpeilie</groupId>
<artifactId>mapstruct-plus-spring-boot-starter</artifactId>
</dependency>
2023-08-07 00:32:23 +00:00
2023-07-04 05:32:19 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source> <!-- depending on your project -->
<target>${java.version}</target> <!-- depending on your project -->
<encoding>utf8</encoding>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<path>
<groupId>io.github.linpeilie</groupId>
<artifactId>mapstruct-plus-processor</artifactId>
<version>${mapstruct-plus.version}</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-mapstruct-binding</artifactId>
<version>0.2.0</version>
</path>
<!-- other annotation processors -->
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<!--因为QueryDsl是类型安全的所以还需要加上Maven APT plugin使用 APT 自动生成Q类:-->
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<version>1.1.3</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-sources/java</outputDirectory>
<processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>