多媒体屏后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
3.3 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  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>yxk_canvasScreen</artifactId>
  7. <groupId>com.canvas.web</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>system</artifactId>
  12. <name>系统模块</name>
  13. <properties>
  14. <jjwt.version>0.11.2</jjwt.version>
  15. <!-- oshi监控需要指定jna版本, 问题详见 https://github.com/oshi/oshi/issues/1040 -->
  16. <jna.version>5.6.0</jna.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.canvas.web</groupId>
  21. <artifactId>common</artifactId>
  22. <version>1.0-SNAPSHOT</version>
  23. </dependency>
  24. <!-- Spring boot websocket -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-websocket</artifactId>
  28. </dependency>
  29. <!-- jwt -->
  30. <dependency>
  31. <groupId>io.jsonwebtoken</groupId>
  32. <artifactId>jjwt-api</artifactId>
  33. <version>${jjwt.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.jsonwebtoken</groupId>
  37. <artifactId>jjwt-impl</artifactId>
  38. <version>${jjwt.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.jsonwebtoken</groupId>
  42. <artifactId>jjwt-jackson</artifactId>
  43. <version>${jjwt.version}</version>
  44. </dependency>
  45. <!-- linux的管理 -->
  46. <dependency>
  47. <groupId>ch.ethz.ganymed</groupId>
  48. <artifactId>ganymed-ssh2</artifactId>
  49. <version>build210</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.jcraft</groupId>
  53. <artifactId>jsch</artifactId>
  54. <version>0.1.55</version>
  55. </dependency>
  56. <!-- 获取系统信息 -->
  57. <dependency>
  58. <groupId>com.github.oshi</groupId>
  59. <artifactId>oshi-core</artifactId>
  60. <version>5.3.6</version>
  61. </dependency>
  62. <!-- quartz -->
  63. <dependency>
  64. <groupId>org.quartz-scheduler</groupId>
  65. <artifactId>quartz</artifactId>
  66. </dependency>
  67. <!--短信验证码所需要的包-->
  68. <dependency>
  69. <groupId>net.sf.ezmorph</groupId>
  70. <artifactId>ezmorph</artifactId>
  71. <version>1.0.3</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>net.sf.json-lib</groupId>
  75. <artifactId>json-lib</artifactId>
  76. <version>2.2.3</version>
  77. <classifier>jdk15</classifier>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.httpcomponents</groupId>
  81. <artifactId>httpmime</artifactId>
  82. <version>4.5.12</version>
  83. </dependency>
  84. <!-- 七牛 -->
  85. <dependency>
  86. <groupId>com.qiniu</groupId>
  87. <artifactId>qiniu-java-sdk</artifactId>
  88. <version>[7.7.0, 7.7.99]</version>
  89. </dependency>
  90. </dependencies>
  91. </project>