电子档案
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.

123 lines
4.0 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>yxk_intellArchives</artifactId>
  7. <groupId>com.intellArchives</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.intellArchives</groupId>
  20. <artifactId>common</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.intellArchives</groupId>
  25. <artifactId>logging</artifactId>
  26. <version>1.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.intellArchives</groupId>
  30. <artifactId>flowable</artifactId>
  31. <version>1.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.intellArchives</groupId>
  35. <artifactId>archives</artifactId>
  36. <version>1.0</version>
  37. </dependency>
  38. <!-- jwt -->
  39. <dependency>
  40. <groupId>io.jsonwebtoken</groupId>
  41. <artifactId>jjwt-api</artifactId>
  42. <version>${jjwt.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.jsonwebtoken</groupId>
  46. <artifactId>jjwt-impl</artifactId>
  47. <version>${jjwt.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.jsonwebtoken</groupId>
  51. <artifactId>jjwt-jackson</artifactId>
  52. <version>${jjwt.version}</version>
  53. </dependency>
  54. <!-- linux的管理 -->
  55. <dependency>
  56. <groupId>ch.ethz.ganymed</groupId>
  57. <artifactId>ganymed-ssh2</artifactId>
  58. <version>build210</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.jcraft</groupId>
  62. <artifactId>jsch</artifactId>
  63. <version>0.1.55</version>
  64. </dependency>
  65. <!-- 获取系统信息 -->
  66. <dependency>
  67. <groupId>com.github.oshi</groupId>
  68. <artifactId>oshi-core</artifactId>
  69. <version>5.3.6</version>
  70. </dependency>
  71. <!-- quartz -->
  72. <dependency>
  73. <groupId>org.quartz-scheduler</groupId>
  74. <artifactId>quartz</artifactId>
  75. </dependency>
  76. <!-- ftp -->
  77. <dependency>
  78. <groupId>commons-net</groupId>
  79. <artifactId>commons-net</artifactId>
  80. <version>3.8.0</version> <!-- 请检查最新的版本号 -->
  81. </dependency>
  82. <!-- ureport2 -->
  83. <dependency>
  84. <groupId>com.bstek.ureport</groupId>
  85. <artifactId>ureport2-console</artifactId>
  86. <version>2.2.9</version>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <finalName>intellArchives</finalName>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-maven-plugin</artifactId>
  95. <version>2.6.1</version>
  96. <configuration>
  97. <!-- includeSystemScope 值要为true -->
  98. <includeSystemScope>true</includeSystemScope>
  99. <excludes>
  100. <exclude>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-configuration-processor</artifactId>
  103. </exclude>
  104. </excludes>
  105. </configuration>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </project>