pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <!-- hutool -->
  28. <dependency>
  29. <groupId>cn.hutool</groupId>
  30. <artifactId>hutool-all</artifactId>
  31. <version>5.8.21</version>
  32. </dependency>
  33. </dependencies>
  34. <properties>
  35. <maven.compiler.source>21</maven.compiler.source>
  36. <maven.compiler.target>21</maven.compiler.target>
  37. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  38. </properties>
  39. </project>