pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <dependency>
  43. <groupId>com.github.jsonzou</groupId>
  44. <artifactId>jmockdata</artifactId>
  45. <version>4.3.0</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/com.infiniteautomation/modbus4j -->
  48. <!-- modbus4j -->
  49. <dependency>
  50. <groupId>com.infiniteautomation</groupId>
  51. <artifactId>modbus4j</artifactId>
  52. <version>3.0.3</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. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <configuration>
  66. <source>17</source>
  67. <target>17</target>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>