pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>vip.xiaonuo</groupId>
  8. <artifactId>snowy-plugin</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <artifactId>snowy-plugin-biz</artifactId>
  12. <packaging>jar</packaging>
  13. <description>业务功能插件</description>
  14. <dependencies>
  15. <!-- 每个插件都要引入自己的对外接口 -->
  16. <dependency>
  17. <groupId>vip.xiaonuo</groupId>
  18. <artifactId>snowy-plugin-biz-api</artifactId>
  19. <version>${project.parent.version}</version>
  20. </dependency>
  21. <!-- 引入登录鉴权接口,用于获取登录用户 -->
  22. <dependency>
  23. <groupId>vip.xiaonuo</groupId>
  24. <artifactId>snowy-plugin-auth-api</artifactId>
  25. <version>${project.parent.version}</version>
  26. </dependency>
  27. <!-- 引入系统接口,用于授权角色等功能 -->
  28. <dependency>
  29. <groupId>vip.xiaonuo</groupId>
  30. <artifactId>snowy-plugin-sys-api</artifactId>
  31. <version>${project.parent.version}</version>
  32. </dependency>
  33. <!-- 引入开发工具接口,用于配置信息 -->
  34. <dependency>
  35. <groupId>vip.xiaonuo</groupId>
  36. <artifactId>snowy-plugin-dev-api</artifactId>
  37. <version>${project.parent.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>vip.xiaonuo</groupId>
  41. <artifactId>snowy-plugin-dev</artifactId>
  42. <version>2.0.0</version>
  43. <scope>compile</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>vip.xiaonuo</groupId>
  47. <artifactId>snowy-plugin-sys</artifactId>
  48. <version>2.0.0</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>vip.xiaonuo</groupId>
  53. <artifactId>snowy-plugin-auth</artifactId>
  54. <version>2.0.0</version>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-test</artifactId>
  60. <version>5.3.18</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>dom4j</groupId>
  64. <artifactId>dom4j</artifactId>
  65. <version>1.6.1</version>
  66. <scope>compile</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>easyexcel-core</artifactId>
  71. <version>3.3.3</version>
  72. </dependency>
  73. </dependencies>
  74. </project>