123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <?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>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- </dependency>
- <dependency>
- <groupId>com.aliyun.oss</groupId>
- <artifactId>aliyun-sdk-oss</artifactId>
- </dependency>
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- </dependency>
- <dependency>
- <groupId>it.ozimov</groupId>
- <artifactId>embedded-redis</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>slf4j-simple</artifactId>
- <groupId>org.slf4j</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <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>
- <artifactId>iot-rule-engine</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-screen</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-component-server</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-component-converter</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-virtual-device</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-message-core</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-temporal-service</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-data-serviceImpl-rdb</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-data-serviceImpl-cache</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-web</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-doc</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-satoken</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-excel</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-log</artifactId>
- </dependency>
- <dependency>
- <groupId>io.github.linpeilie</groupId>
- <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
- </dependency>
- </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>
|