pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>16</source>
  17. <target>16</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <modelVersion>4.0.0</modelVersion>
  23. <artifactId>ruoyi-sim</artifactId>
  24. <description>
  25. sim追加二次开发 模块 by tom
  26. </description>
  27. <dependencies>
  28. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  29. <dependency>
  30. <groupId>io.swagger</groupId>
  31. <artifactId>swagger-models</artifactId>
  32. <version>1.6.2</version>
  33. </dependency>
  34. <!-- ruoyi 通用工具-->
  35. <dependency>
  36. <groupId>com.ruoyi</groupId>
  37. <artifactId>ruoyi-common</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.ruoyi</groupId>
  41. <artifactId>ruoyi-system</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.ele6</groupId>
  45. <artifactId>catalyzer-ruoyi-vue</artifactId>
  46. <version>0.0.2-SNAPSHOT</version>
  47. </dependency>
  48. <!-- hutool -->
  49. <dependency>
  50. <groupId>cn.hutool</groupId>
  51. <artifactId>hutool-all</artifactId>
  52. <version>5.8.21</version>
  53. </dependency>
  54. </dependencies>
  55. <properties>
  56. <maven.compiler.source>21</maven.compiler.source>
  57. <maven.compiler.target>21</maven.compiler.target>
  58. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  59. </properties>
  60. </project>