智能库房综合管理系统
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.

134 lines
4.4 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
2 years ago
2 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_StoreroomSystem</artifactId>
  7. <groupId>com.storeroom</groupId>
  8. <version>1.0</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.storeroom</groupId>
  21. <artifactId>common</artifactId>
  22. <version>1.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.storeroom</groupId>
  26. <artifactId>logging</artifactId>
  27. <version>1.0</version>
  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. <dependency>
  68. <groupId>com.storeroom</groupId>
  69. <artifactId>archives</artifactId>
  70. <version>1.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.storeroom</groupId>
  74. <artifactId>storeroom</artifactId>
  75. <version>1.0</version>
  76. </dependency>
  77. <!-- 达梦数据库 -->
  78. <dependency>
  79. <groupId>com.dameng</groupId>
  80. <artifactId>DmJdbcDriver18</artifactId>
  81. <version>1.0</version>
  82. <scope>system</scope>
  83. <systemPath>${pom.basedir}/src/main/resources/lib/DmJdbcDriver18_18.jar</systemPath>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.dameng</groupId>
  87. <artifactId>DmDialect-for-hibernate5.3</artifactId>
  88. <version>1.0</version>
  89. <scope>system</scope>
  90. <systemPath>${pom.basedir}/src/main/resources/lib/DmDialect-for-hibernate5.3.jar</systemPath>
  91. </dependency>
  92. <!-- <dependency>-->
  93. <!-- &lt;!&ndash;注意:只有这个版本的hibernate兼容达梦数据库 &ndash;&gt;-->
  94. <!-- <groupId>org.hibernate</groupId>-->
  95. <!-- <artifactId>hibernate-core</artifactId>-->
  96. <!-- <version>5.3.18.Final</version>-->
  97. <!-- </dependency>-->
  98. </dependencies>
  99. <build>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. <version>2.6.1</version>
  105. <configuration>
  106. <!-- includeSystemScope 值要为true -->
  107. <includeSystemScope>true</includeSystemScope>
  108. <excludes>
  109. <exclude>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-configuration-processor</artifactId>
  112. </exclude>
  113. </excludes>
  114. </configuration>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. </project>