多媒体屏后台管理系统
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.

112 lines
3.6 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
  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>commons-logging</groupId>
  70. <artifactId>commons-logging</artifactId>
  71. <version>1.1.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>commons-collections</groupId>
  75. <artifactId>commons-collections</artifactId>
  76. <version>3.2.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.commons</groupId>
  80. <artifactId>commons-lang3</artifactId>
  81. <version>3.3.2</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>net.sf.ezmorph</groupId>
  85. <artifactId>ezmorph</artifactId>
  86. <version>1.0.3</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>net.sf.json-lib</groupId>
  90. <artifactId>json-lib</artifactId>
  91. <version>2.2.3</version>
  92. <classifier>jdk15</classifier>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.httpcomponents</groupId>
  96. <artifactId>httpclient</artifactId>
  97. <version>4.3.5</version>
  98. </dependency>
  99. </dependencies>
  100. </project>