forked from sfms3.0/sfms3.0
11 changed files with 6 additions and 195 deletions
@ -1,23 +0,0 @@ |
|||||
<?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.win</groupId> |
|
||||
<artifactId>win</artifactId> |
|
||||
<version>${revision}</version> |
|
||||
</parent> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
<modules> |
|
||||
<module>win-module-scp-api</module> |
|
||||
<module>win-module-scp-biz</module> |
|
||||
</modules> |
|
||||
<artifactId>win-module-scp</artifactId> |
|
||||
<packaging>pom</packaging> |
|
||||
|
|
||||
<name>${project.artifactId}</name> |
|
||||
<description> |
|
||||
scp 模块下,我们放通用业务,支撑上层的核心业务。 |
|
||||
</description> |
|
||||
|
|
||||
</project> |
|
@ -1,34 +0,0 @@ |
|||||
<?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.win</groupId> |
|
||||
<artifactId>win-module-scp</artifactId> |
|
||||
<version>${revision}</version> |
|
||||
</parent> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
<artifactId>win-module-scp-api</artifactId> |
|
||||
<packaging>jar</packaging> |
|
||||
|
|
||||
<name>${project.artifactId}</name> |
|
||||
<description> |
|
||||
scp 模块 API,暴露给其它模块调用 |
|
||||
</description> |
|
||||
|
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-common</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<!-- 参数校验 --> |
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-validation</artifactId> |
|
||||
<optional>true</optional> |
|
||||
</dependency> |
|
||||
|
|
||||
</dependencies> |
|
||||
|
|
||||
</project> |
|
@ -1,4 +0,0 @@ |
|||||
/** |
|
||||
* System API 包,定义暴露给其它模块的 API |
|
||||
*/ |
|
||||
package com.win.module.scp.api; |
|
@ -1,120 +0,0 @@ |
|||||
<?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.win</groupId> |
|
||||
<artifactId>win-module-scp</artifactId> |
|
||||
<version>${revision}</version> |
|
||||
</parent> |
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
<artifactId>win-module-scp-biz</artifactId> |
|
||||
<packaging>jar</packaging> |
|
||||
|
|
||||
<name>${project.artifactId}</name> |
|
||||
<description> |
|
||||
scp 模块下,我们放通用业务,支撑上层的核心业务。 |
|
||||
</description> |
|
||||
|
|
||||
<dependencies> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-module-system-api</artifactId> |
|
||||
<version>${revision}</version> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-module-infra-api</artifactId> |
|
||||
<version>${revision}</version> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-module-scp-api</artifactId> |
|
||||
<version>${revision}</version> |
|
||||
</dependency> |
|
||||
|
|
||||
<!-- 业务组件 --> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-biz-operatelog</artifactId> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-biz-sms</artifactId> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-biz-dict</artifactId> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-biz-data-permission</artifactId> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-biz-tenant</artifactId> |
|
||||
</dependency> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-biz-ip</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<!-- Web 相关 --> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-security</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-validation</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<!-- DB 相关 --> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-mybatis</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-redis</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<!-- Job 定时任务相关 --> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-job</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<!-- 消息队列相关 --> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-mq</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<!-- Test 测试相关 --> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-test</artifactId> |
|
||||
<scope>test</scope> |
|
||||
</dependency> |
|
||||
|
|
||||
<!-- 工具类相关 --> |
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-excel</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<dependency> |
|
||||
<groupId>com.win</groupId> |
|
||||
<artifactId>win-spring-boot-starter-captcha</artifactId> |
|
||||
</dependency> |
|
||||
|
|
||||
<dependency> |
|
||||
<groupId>org.springframework.boot</groupId> |
|
||||
<artifactId>spring-boot-starter-mail</artifactId> |
|
||||
</dependency> |
|
||||
</dependencies> |
|
||||
|
|
||||
</project> |
|
@ -1,4 +0,0 @@ |
|||||
/** |
|
||||
* System API 包,定义暴露给其它模块的 API |
|
||||
*/ |
|
||||
package com.win.module.scp.api; |
|
@ -1,4 +0,0 @@ |
|||||
/** |
|
||||
* System API 包,定义暴露给其它模块的 API |
|
||||
*/ |
|
||||
package com.win.module.scp.controller; |
|
@ -1 +0,0 @@ |
|||||
#\u6B64\u6587\u4EF6\u4E0D\u9700\u8981\u586B\u5199 |
|
Loading…
Reference in new issue