| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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>salesHelper</artifactId>
- <groupId>com.saleshelper</groupId>
- <version>3.8.7</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>salesHelper-admin-common</artifactId>
- <description>
- 共用web服务入口
- </description>
- <dependencies>
- <!-- Swagger 依赖配置 -->
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-models</artifactId>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-annotations</artifactId>
- </dependency>
- <!-- Mysql驱动包 -->
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- </dependency>
- <!-- 核心模块-->
- <!-- <dependency>
- <groupId>com.saleshelper</groupId>
- <artifactId>salesHelper-framework</artifactId>
- </dependency>-->
- <!-- 定时任务-->
- <dependency>
- <groupId>com.saleshelper</groupId>
- <artifactId>salesHelper-quartz</artifactId>
- </dependency>
- <!-- 代码生成-->
- <dependency>
- <groupId>com.saleshelper</groupId>
- <artifactId>salesHelper-generator</artifactId>
- </dependency>
- <!-- 预言模块-->
- <dependency>
- <groupId>com.yuyan</groupId>
- <artifactId>salesHelper-yuyan</artifactId>
- </dependency>
- <!-- 测试所需 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mariadb.jdbc</groupId>
- <artifactId>mariadb-java-client</artifactId>
- </dependency>
- </dependencies>
- </project>
|