pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. <artifactId>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-tuya</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <!-- swagger3-->
  18. <dependency>
  19. <groupId>io.springfox</groupId>
  20. <artifactId>springfox-boot-starter</artifactId>
  21. </dependency>
  22. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  23. <dependency>
  24. <groupId>io.swagger</groupId>
  25. <artifactId>swagger-models</artifactId>
  26. <version>1.6.2</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.ruoyi</groupId>
  30. <artifactId>ruoyi-common</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.ruoyi</groupId>
  34. <artifactId>ruoyi-framework</artifactId>
  35. </dependency>
  36. <!-- 阿里云对象存储OSS-->
  37. <dependency>
  38. <groupId>com.aliyun.oss</groupId>
  39. <artifactId>aliyun-sdk-oss</artifactId>
  40. <version>3.10.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.hutool</groupId>
  44. <artifactId>hutool-all</artifactId>
  45. <version>5.6.5</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.hutool</groupId>
  49. <artifactId>hutool-core</artifactId>
  50. <version>5.6.5</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.aliyun</groupId>
  54. <artifactId>aliyun-java-sdk-core</artifactId>
  55. <version>4.5.13</version>
  56. </dependency>
  57. <!-- <dependency>-->
  58. <!-- <groupId>javax.xml.bind</groupId>-->
  59. <!-- <artifactId>jaxb-api</artifactId>-->
  60. <!-- <version>2.3.1</version>-->
  61. <!-- </dependency>-->
  62. <!-- <dependency>-->
  63. <!-- <groupId>javax.activation</groupId>-->
  64. <!-- <artifactId>activation</artifactId>-->
  65. <!-- <version>1.1.1</version>-->
  66. <!-- </dependency>-->
  67. <!-- no more than 2.3.3-->
  68. <!-- <dependency>-->
  69. <!-- <groupId>org.glassfish.jaxb</groupId>-->
  70. <!-- <artifactId>jaxb-runtime</artifactId>-->
  71. <!-- <version>2.3.3</version>-->
  72. <!-- </dependency>-->
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. </dependency>
  77. </dependencies>
  78. </project>