pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>education-plugin-forum</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <artifactId>education-plugin-forum-func</artifactId>
  12. <packaging>jar</packaging>
  13. <description>论坛功能func实现</description>
  14. <dependencies>
  15. <!-- 每个插件都要引入自己的对外接口 -->
  16. <dependency>
  17. <groupId>vip.xiaonuo</groupId>
  18. <artifactId>education-plugin-forum-api</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>vip.xiaonuo</groupId>
  22. <artifactId>education-plugin-sys-api</artifactId>
  23. </dependency>
  24. <!-- 引入登录鉴权接口,用于实现其登录所需逻辑 -->
  25. <dependency>
  26. <groupId>vip.xiaonuo</groupId>
  27. <artifactId>education-plugin-auth-api</artifactId>
  28. </dependency>
  29. <!-- 引入开发工具接口,用于配置信息 -->
  30. <dependency>
  31. <groupId>vip.xiaonuo</groupId>
  32. <artifactId>education-plugin-dev-api</artifactId>
  33. </dependency>
  34. <!-- 引入移动端接口,用于移动端菜单信息 -->
  35. <dependency>
  36. <groupId>vip.xiaonuo</groupId>
  37. <artifactId>education-plugin-mobile-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>vip.xiaonuo</groupId>
  41. <artifactId>education-plugin-disk-api</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.jsoup</groupId>
  45. <artifactId>jsoup</artifactId>
  46. <version>1.16.1</version>
  47. </dependency>
  48. </dependencies>
  49. </project>