pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <dependency>
  32. <groupId>cn.ele6</groupId>
  33. <artifactId>ele6-catalyzer-ruoyi-vue</artifactId>
  34. <version>0.1-SNAPSHOT</version>
  35. </dependency>
  36. <!-- hutool -->
  37. <dependency>
  38. <groupId>cn.hutool</groupId>
  39. <artifactId>hutool-all</artifactId>
  40. <version>5.8.21</version>
  41. </dependency>
  42. </dependencies>
  43. <properties>
  44. <maven.compiler.source>21</maven.compiler.source>
  45. <maven.compiler.target>21</maven.compiler.target>
  46. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  47. </properties>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <configuration>
  54. <source>17</source>
  55. <target>17</target>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>