12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-learn</artifactId>
- <version>${revision}</version>
- </parent>
- <artifactId>yudao-learn-biz</artifactId>
- <packaging>jar</packaging>
- <name>${project.artifactId}</name> <!-- 3. 新增 name 为 ${project.artifactId} -->
- <description> <!-- 4. 新增 description 为该模块的描述 -->
- demo 模块,主要实现 XXX、YYY、ZZZ 等功能。
- </description>
- <dependencies> <!-- 5. 新增依赖,这里引入的都是比较常用的业务组件、技术组件 -->
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-learn</artifactId>
- <version>${revision}</version>
- </dependency>
- <!-- Web 相关 -->
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-spring-boot-starter-security</artifactId>
- </dependency>
- <!-- DB 相关 -->
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
- </dependency>
- <!-- Test 测试相关 -->
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-spring-boot-starter-test</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-learn-api</artifactId>
- <version>${revision}</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|