| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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>
- <artifactId>sptg-third</artifactId>
- <groupId>com.sptg</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>jar</packaging>
- <artifactId>sptg-third-biz</artifactId>
- <description>第三方接口推送业务实现模块</description>
- <dependencies>
- <!-- ===================================== Or JAR ===================================== -->
- <!-- MySql -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <!-- druid 数据源 -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <!-- ===================================== Modular JAR ===================================== -->
- <dependency>
- <groupId>com.sptg</groupId>
- <artifactId>sptg-third-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 物业服务接口 -->
- <dependency>
- <groupId>com.sptg</groupId>
- <artifactId>sptg-estate-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 物联网服务接口 -->
- <dependency>
- <groupId>com.sptg</groupId>
- <artifactId>sptg-iot-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 视频云服务接口 -->
- <dependency>
- <groupId>com.sptg</groupId>
- <artifactId>sptg-video-cloud-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- ===================================== Spring Boot JAR ===================================== -->
- <!-- mybatis-plus -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- </dependency>
- </dependencies>
- <build>
- <filters>
- <filter>../../env_files/properties/${env}.properties</filter>
- </filters>
- <plugins>
- <!-- Spring Boot 打包插件( 非“Web模块”请勿引入) -->
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|