| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?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-ad</artifactId>
- <groupId>com.sptg</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>sptg-ad-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-ad-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 权限模块接口 -->
- <dependency>
- <groupId>com.sptg</groupId>
- <artifactId>sptg-permissions-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 设备模块接口 -->
- <dependency>
- <groupId>com.sptg</groupId>
- <artifactId>sptg-device-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 统计模块接口 -->
- <dependency>
- <groupId>com.sptg</groupId>
- <artifactId>sptg-statistics-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- ===================================== Spring Boot JAR ===================================== -->
- <!-- 测试用例 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- </dependency>
- <!-- 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>
|