pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <groupId>vip.xiaonuo</groupId>
  7. <artifactId>snowy-plugin</artifactId>
  8. <version>2.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>we.itda</groupId>
  12. <artifactId>itda-plugin-luohe</artifactId>
  13. <version>2.0.0</version>
  14. <description>luohe插件</description>
  15. <dependencies>
  16. <!-- 每个插件都要引入自己的对外接口 -->
  17. <dependency>
  18. <groupId>we.itda</groupId>
  19. <artifactId>itda-plugin-luohe-api</artifactId>
  20. <version>2.0.0</version>
  21. </dependency>
  22. <!-- 引入登录鉴权接口,用于获取登录用户 -->
  23. <dependency>
  24. <groupId>vip.xiaonuo</groupId>
  25. <artifactId>snowy-plugin-auth-api</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>vip.xiaonuo</groupId>
  29. <artifactId>snowy-plugin-sys-api</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>vip.xiaonuo</groupId>
  33. <artifactId>snowy-plugin-dev-api</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.junit.jupiter</groupId>
  37. <artifactId>junit-jupiter-api</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. </dependencies>
  41. </project>