4x/data/pom.xml

113 lines
3.9 KiB
XML

<?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>
<groupId>com.fourfaith.framework</groupId>
<artifactId>fourfaith-framework-parent</artifactId>
<version>2.0-SNAPSHOT</version>
<relativePath />
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.fourfaith.iot</groupId>
<artifactId>iot-data-center</artifactId>
<version>2.7.3-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>data-center-restful-api</module>
<module>data-center-main</module>
<module>data-center-dubbo-api</module>
<!-- <module>iot-flink-rule</module>-->
</modules>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<!-- nexus私服配置 -->
<distributionManagement>
<repository>
<id>maven-snapshots</id>
<name>Nexus Repository</name>
<url>http://192.168.9.217:8081/repository/maven-snapshots/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>maven-public</id>
<name>Nexus Repository</name>
<url>http://192.168.9.217:8081/repository/maven-public/</url>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<!-- mybatis plus start -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.4</version>
</dependency>
<!-- mybatis plus end -->
<!-- pagehelper start -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.4.1</version>
</dependency>
<!-- pagehelper end -->
<dependency>
<groupId>com.fourfaith.iot</groupId>
<artifactId>data-center-restful-api</artifactId>
<version>2.7.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.fourfaith.iot</groupId>
<artifactId>data-center-dubbo-api</artifactId>
<version>2.7.3-SNAPSHOT</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.taosdata.jdbc</groupId>-->
<!-- <artifactId>taos-jdbcdriver</artifactId>-->
<!-- <version>3.0.0</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.taosdata.jdbc</groupId>-->
<!-- <artifactId>taos-jdbcdriver</artifactId>-->
<!-- <version>3.0.0</version>-->
<!-- </dependency>-->
<!--OSS minio-->
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>8.1.0</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>