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

71 lines
2.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
  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. <!-- jwt -->
  25. <dependency>
  26. <groupId>io.jsonwebtoken</groupId>
  27. <artifactId>jjwt-api</artifactId>
  28. <version>${jjwt.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.jsonwebtoken</groupId>
  32. <artifactId>jjwt-impl</artifactId>
  33. <version>${jjwt.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.jsonwebtoken</groupId>
  37. <artifactId>jjwt-jackson</artifactId>
  38. <version>${jjwt.version}</version>
  39. </dependency>
  40. <!-- linux的管理 -->
  41. <dependency>
  42. <groupId>ch.ethz.ganymed</groupId>
  43. <artifactId>ganymed-ssh2</artifactId>
  44. <version>build210</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.jcraft</groupId>
  48. <artifactId>jsch</artifactId>
  49. <version>0.1.55</version>
  50. </dependency>
  51. <!-- 获取系统信息 -->
  52. <dependency>
  53. <groupId>com.github.oshi</groupId>
  54. <artifactId>oshi-core</artifactId>
  55. <version>5.3.6</version>
  56. </dependency>
  57. <!-- quartz -->
  58. <dependency>
  59. <groupId>org.quartz-scheduler</groupId>
  60. <artifactId>quartz</artifactId>
  61. </dependency>
  62. </dependencies>
  63. </project>