pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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>com.ruoyi</groupId>
  7. <artifactId>ruoyi</artifactId>
  8. <version>3.8.8</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-sim</artifactId>
  12. <description>
  13. sim追加二次开发 模块 by tom
  14. </description>
  15. <dependencies>
  16. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  17. <dependency>
  18. <groupId>io.swagger</groupId>
  19. <artifactId>swagger-models</artifactId>
  20. <version>1.6.2</version>
  21. </dependency>
  22. <!-- ruoyi 通用工具-->
  23. <dependency>
  24. <groupId>com.ruoyi</groupId>
  25. <artifactId>ruoyi-common</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.ruoyi</groupId>
  29. <artifactId>ruoyi-system</artifactId>
  30. </dependency>
  31. <!-- hutool -->
  32. <dependency>
  33. <groupId>cn.hutool</groupId>
  34. <artifactId>hutool-all</artifactId>
  35. <version>5.8.21</version>
  36. </dependency>
  37. </dependencies>
  38. <properties>
  39. <maven.compiler.source>21</maven.compiler.source>
  40. <maven.compiler.target>21</maven.compiler.target>
  41. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  42. </properties>
  43. </project>