pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.unis</groupId>
  8. <artifactId>delivery-module-core</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>delivery-module-core-biz</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. core 模块,《交割库管理系统》核心模块,核心功能写在这里
  16. </description>
  17. <dependencies> <!-- 5. 新增依赖,这里引入的都是比较常用的业务组件、技术组件 -->
  18. <dependency>
  19. <groupId>com.unis</groupId>
  20. <artifactId>delivery-module-core-api</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <!-- Web 相关 -->
  24. <dependency>
  25. <groupId>com.unis</groupId>
  26. <artifactId>delivery-spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.unis</groupId>
  30. <artifactId>delivery-spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <!-- DB 相关 -->
  33. <dependency>
  34. <groupId>com.unis</groupId>
  35. <artifactId>delivery-spring-boot-starter-mybatis</artifactId>
  36. </dependency>
  37. <!-- 工具类相关 -->
  38. <!-- easyExcel -->
  39. <dependency>
  40. <groupId>com.unis</groupId>
  41. <artifactId>delivery-spring-boot-starter-excel</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.unis</groupId>
  45. <artifactId>delivery-module-system-biz</artifactId>
  46. <version>2.1.0-jdk8-snapshot</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.unis</groupId>
  51. <artifactId>delivery-module-infra-biz</artifactId>
  52. <version>2.1.0-jdk8-snapshot</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. </dependencies>
  56. </project>