pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>yudao-module-museum</artifactId>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <version>${revision}</version> <!-- 1. 修改 version 为 ${revision} -->
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging> <!-- 2. 新增 packaging 为 jar -->
  12. <artifactId>yudao-module-museum-biz</artifactId>
  13. <name>${project.artifactId}</name> <!-- 3. 新增 name 为 ${project.artifactId} -->
  14. <description> <!-- 4. 新增 description 为该模块的描述 -->
  15. demo 模块,主要实现 XXX、YYY、ZZZ 等功能。
  16. </description>
  17. <dependencies> <!-- 5. 新增依赖,这里引入的都是比较常用的业务组件、技术组件 -->
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-module-museum-biz</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <!-- Web 相关 -->
  24. <dependency>
  25. <groupId>cn.iocoder.boot</groupId>
  26. <artifactId>yudao-spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.iocoder.boot</groupId>
  30. <artifactId>yudao-spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <!-- DB 相关 -->
  33. <dependency>
  34. <groupId>cn.iocoder.boot</groupId>
  35. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  36. </dependency>
  37. <!-- Test 测试相关 -->
  38. <dependency>
  39. <groupId>cn.iocoder.boot</groupId>
  40. <artifactId>yudao-spring-boot-starter-test</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba</groupId>
  44. <artifactId>easyexcel-core</artifactId>
  45. <version>4.0.3</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. </dependencies>
  49. </project>