pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.7</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-system</artifactId>
  12. <description>
  13. system系统模块
  14. </description>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <configuration>
  21. <source>9</source>
  22. <target>9</target>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <dependencies>
  28. <!-- 通用工具-->
  29. <dependency>
  30. <groupId>com.ruoyi</groupId>
  31. <artifactId>ruoyi-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.persistence</groupId>
  35. <artifactId>javax.persistence-api</artifactId>
  36. <version>2.2</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.ljserver.tool</groupId>
  45. <artifactId>web-office-v3</artifactId>
  46. <version>3.1.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.qiniu</groupId>
  50. <artifactId>qiniu-java-sdk</artifactId>
  51. <version>7.15.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-mock</artifactId>
  56. <version>2.0.8</version>
  57. </dependency>
  58. </dependencies>
  59. </project>