123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.7.11</version>
- <relativePath/>
- </parent>
- <groupId>cc.iotkit</groupId>
- <artifactId>iotkit-parent</artifactId>
- <version>0.5.3</version>
- <name>${project.artifactId}</name>
- <description>奇特物联是一个开源的物联网基础开发平台,提供了物联网及相关业务开发的常见基础功能,
- 能帮助你快速搭建自己的物联网相关业务平台。
- </description>
- <url>https://gitee.com/iotkit-open-source/iotkit-parent</url>
- <packaging>pom</packaging>
- <modules>
- <module>iot-dao</module>
- <module>iot-module</module>
- <module>iot-starter</module>
- <module>iot-test-tool</module>
- </modules>
- <properties>
- <java.version>11</java.version>
- <iot-iita-core.version>1.0.5</iot-iita-core.version>
- <spring-boot.version>2.7.11</spring-boot.version>
- <vertx.version>4.2.2</vertx.version>
- <satoken.version>1.34.0</satoken.version>
- <beanutils.version>1.9.3</beanutils.version>
- <lang3.version>3.7</lang3.version>
- <hutool.version>5.8.18</hutool.version>
- <mapstruct-plus.version>1.3.1</mapstruct-plus.version>
- <spring-brick.version>3.1.4</spring-brick.version>
- <yitter.version>1.0.6</yitter.version>
- <velocity.version>2.3</velocity.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <!-- SpringBoot的依赖配置-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring-boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>io.github.linpeilie</groupId>
- <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
- <version>1.3.1</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>${beanutils.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.yitter</groupId>
- <artifactId>yitter-idgenerator</artifactId>
- <version>1.0.6</version>
- </dependency>
- <!-- hutool 的依赖配置-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-bom</artifactId>
- <version>${hutool.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok.version}</version>
- </dependency>
- <dependency>
- <groupId>jakarta.servlet</groupId>
- <artifactId>jakarta.servlet-api</artifactId>
- <version>6.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- <version>2.3.2</version>
- </dependency>
- <dependency>
- <groupId>javax.ws.rs</groupId>
- <artifactId>javax.ws.rs-api</artifactId>
- <version>2.1.1</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>20.0</version>
- </dependency>
- <dependency>
- <groupId>co.elastic.clients</groupId>
- <artifactId>elasticsearch-java</artifactId>
- <version>7.17.9</version>
- </dependency>
- <dependency>
- <groupId>it.ozimov</groupId>
- <artifactId>embedded-redis</artifactId>
- <version>0.7.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-slf4j-impl</artifactId>
- <version>2.17.1</version>
- </dependency>
- <dependency>
- <groupId>com.ejlchina</groupId>
- <artifactId>okhttps</artifactId>
- <version>3.1.1</version>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-kafka-client</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-core</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-mqtt</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-web-proxy</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-web-client</artifactId>
- <version>${vertx.version}</version>
- </dependency>
- <dependency>
- <groupId>com.gitee.starblues</groupId>
- <artifactId>spring-brick</artifactId>
- <version>${spring-brick.version}</version>
- </dependency>
- <dependency>
- <groupId>com.gitee.starblues</groupId>
- <artifactId>spring-brick-bootstrap</artifactId>
- <version>${spring-brick.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.biyanwen</groupId>
- <artifactId>jpa-comment-spring-boot-starter</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>knife4j-spring-boot-starter</artifactId>
- <version>2.0.9</version>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>1.5.22</version>
- </dependency>
- <!-- iot-core -->
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-core</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-thing</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-oss</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-websocket</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-web</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-doc</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-satoken</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-excel</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-tenant</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-redis</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-log</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <!--message-bus-->
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-message-core</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-message-event-bus</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-message-rocketmq</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-script-engine</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <!--iot-data-->
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-data-model</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-data-service</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-data-serviceImpl-cache</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-data-serviceImpl-rdb</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-temporal-service</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-temporal-serviceImpl-es</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-temporal-serviceImpl-td</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-manager</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-generator</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-message-notify</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-rule-engine</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>cc.iotkit</groupId>-->
- <!-- <artifactId>iot-screen</artifactId>-->
- <!-- <version>${project.version}</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-system</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-message-bus</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-modbus</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-openapi</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-virtual-device</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-plugin-core</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-plugin-main</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-oss-embed</artifactId>
- <version>${iot-iita-core.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.yitter</groupId>
- <artifactId>yitter-idgenerator</artifactId>
- <version>${yitter.version}</version>
- </dependency>
- <!-- velocity代码生成使用模板 -->
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- <version>${velocity.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <source>${java.version}</source>
- <target>${java.version}</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|