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

110 lines
3.7 KiB

5 months ago
5 months ago
  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. <dependency>
  29. <groupId>com.yxkLibraryIntegratedManage</groupId>
  30. <artifactId>visualInventory</artifactId>
  31. <version>1.0</version>
  32. </dependency>
  33. <!-- jwt -->
  34. <dependency>
  35. <groupId>io.jsonwebtoken</groupId>
  36. <artifactId>jjwt-api</artifactId>
  37. <version>${jjwt.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.jsonwebtoken</groupId>
  41. <artifactId>jjwt-impl</artifactId>
  42. <version>${jjwt.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.jsonwebtoken</groupId>
  46. <artifactId>jjwt-jackson</artifactId>
  47. <version>${jjwt.version}</version>
  48. </dependency>
  49. <!-- linux的管理 -->
  50. <dependency>
  51. <groupId>ch.ethz.ganymed</groupId>
  52. <artifactId>ganymed-ssh2</artifactId>
  53. <version>build210</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.jcraft</groupId>
  57. <artifactId>jsch</artifactId>
  58. <version>0.1.55</version>
  59. </dependency>
  60. <!-- 获取系统信息 -->
  61. <dependency>
  62. <groupId>com.github.oshi</groupId>
  63. <artifactId>oshi-core</artifactId>
  64. <version>5.3.6</version>
  65. </dependency>
  66. <!-- quartz -->
  67. <dependency>
  68. <groupId>org.quartz-scheduler</groupId>
  69. <artifactId>quartz</artifactId>
  70. </dependency>
  71. <!-- ftp -->
  72. <dependency>
  73. <groupId>commons-net</groupId>
  74. <artifactId>commons-net</artifactId>
  75. <version>3.8.0</version> <!-- 请检查最新的版本号 -->
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <finalName>yxkLibraryIntegrated</finalName>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-maven-plugin</artifactId>
  84. <version>2.6.1</version>
  85. <configuration>
  86. <!-- includeSystemScope 值要为true -->
  87. <includeSystemScope>true</includeSystemScope>
  88. <excludes>
  89. <exclude>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-configuration-processor</artifactId>
  92. </exclude>
  93. </excludes>
  94. </configuration>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>