图书馆智能管理系统
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.

104 lines
3.5 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>yxkLibraryIntegratedManage</artifactId>
  7. <groupId>com.yxkLibraryIntegratedManage</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <artifactId>system</artifactId>
  11. <name>系统设置</name>
  12. <properties>
  13. <jjwt.version>0.11.2</jjwt.version>
  14. <!-- oshi监控需要指定jna版本, 问题详见 https://github.com/oshi/oshi/issues/1040 -->
  15. <jna.version>5.6.0</jna.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.yxkLibraryIntegratedManage</groupId>
  20. <artifactId>common</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.yxkLibraryIntegratedManage</groupId>
  25. <artifactId>logging</artifactId>
  26. <version>1.0</version>
  27. </dependency>
  28. <!-- jwt -->
  29. <dependency>
  30. <groupId>io.jsonwebtoken</groupId>
  31. <artifactId>jjwt-api</artifactId>
  32. <version>${jjwt.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.jsonwebtoken</groupId>
  36. <artifactId>jjwt-impl</artifactId>
  37. <version>${jjwt.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.jsonwebtoken</groupId>
  41. <artifactId>jjwt-jackson</artifactId>
  42. <version>${jjwt.version}</version>
  43. </dependency>
  44. <!-- linux的管理 -->
  45. <dependency>
  46. <groupId>ch.ethz.ganymed</groupId>
  47. <artifactId>ganymed-ssh2</artifactId>
  48. <version>build210</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.jcraft</groupId>
  52. <artifactId>jsch</artifactId>
  53. <version>0.1.55</version>
  54. </dependency>
  55. <!-- 获取系统信息 -->
  56. <dependency>
  57. <groupId>com.github.oshi</groupId>
  58. <artifactId>oshi-core</artifactId>
  59. <version>5.3.6</version>
  60. </dependency>
  61. <!-- quartz -->
  62. <dependency>
  63. <groupId>org.quartz-scheduler</groupId>
  64. <artifactId>quartz</artifactId>
  65. </dependency>
  66. <!-- ftp -->
  67. <dependency>
  68. <groupId>commons-net</groupId>
  69. <artifactId>commons-net</artifactId>
  70. <version>3.8.0</version> <!-- 请检查最新的版本号 -->
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <finalName>intellArchives</finalName>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-maven-plugin</artifactId>
  79. <version>2.6.1</version>
  80. <configuration>
  81. <!-- includeSystemScope 值要为true -->
  82. <includeSystemScope>true</includeSystemScope>
  83. <excludes>
  84. <exclude>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-configuration-processor</artifactId>
  87. </exclude>
  88. </excludes>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>