pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>8</source>
  17. <target>8</target>
  18. <compilerArgs>--enable-preview</compilerArgs>
  19. </configuration>
  20. </plugin>
  21. </plugins>
  22. </build>
  23. <modelVersion>4.0.0</modelVersion>
  24. <packaging>jar</packaging> <!-- 2. 新增 packaging 为 jar -->
  25. <artifactId>yudao-module-museum-biz</artifactId>
  26. <name>${project.artifactId}</name> <!-- 3. 新增 name 为 ${project.artifactId} -->
  27. <description> <!-- 4. 新增 description 为该模块的描述 -->
  28. demo 模块,主要实现 XXX、YYY、ZZZ 等功能。
  29. </description>
  30. <dependencies> <!-- 5. 新增依赖,这里引入的都是比较常用的业务组件、技术组件 -->
  31. <dependency>
  32. <groupId>cn.iocoder.boot</groupId>
  33. <artifactId>yudao-module-museum-biz</artifactId>
  34. <version>${revision}</version>
  35. </dependency>
  36. <!-- Web 相关 -->
  37. <dependency>
  38. <groupId>cn.iocoder.boot</groupId>
  39. <artifactId>yudao-spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.iocoder.boot</groupId>
  43. <artifactId>yudao-spring-boot-starter-security</artifactId>
  44. </dependency>
  45. <!-- DB 相关 -->
  46. <dependency>
  47. <groupId>cn.iocoder.boot</groupId>
  48. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  49. </dependency>
  50. <!-- Test 测试相关 -->
  51. <dependency>
  52. <groupId>cn.iocoder.boot</groupId>
  53. <artifactId>yudao-spring-boot-starter-test</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>easyexcel-core</artifactId>
  58. <version>4.0.3</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. </dependencies>
  62. </project>