pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>spring-boot-starter-parent</artifactId>
  6. <groupId>org.springframework.boot</groupId>
  7. <version>2.6.11</version>
  8. </parent>
  9. <groupId>com.nokia</groupId>
  10. <artifactId>hb_springboot_parent</artifactId>
  11. <version>1.0-SNAPSHOT</version>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>common</module>
  15. </modules>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. </properties>
  23. <dependencyManagement>
  24. <dependencies>
  25. <!-- 项目的子模块版本开始 -->
  26. <dependency>
  27. <groupId>com.nokia.common</groupId>
  28. <artifactId>common</artifactId>
  29. <version>1.0-SNAPSHOT</version>
  30. </dependency>
  31. <!-- jsch -->
  32. <dependency>
  33. <groupId>com.jcraft</groupId>
  34. <artifactId>jsch</artifactId>
  35. <version>0.1.55</version>
  36. </dependency>
  37. <!-- 项目的子模块版本结束 -->
  38. <!-- https://mvnrepository.com/artifact/de.siegmar/fastcsv -->
  39. <dependency>
  40. <groupId>de.siegmar</groupId>
  41. <artifactId>fastcsv</artifactId>
  42. <version>2.2.0</version>
  43. <scope>test</scope>
  44. </dependency>
  45. <!-- commons-csv -->
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-csv</artifactId>
  49. <version>1.9.0</version>
  50. </dependency>
  51. <!-- commons-beanutils -->
  52. <dependency>
  53. <groupId>commons-beanutils</groupId>
  54. <artifactId>commons-beanutils-core</artifactId>
  55. <version>1.8.3</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.httpcomponents</groupId>
  59. <artifactId>httpclient</artifactId>
  60. <version>4.5.13</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.httpcomponents</groupId>
  64. <artifactId>httpmime</artifactId>
  65. <version>4.5</version>
  66. </dependency>
  67. <!-- snmp协议的实现 -->
  68. <dependency>
  69. <groupId>org.snmp4j</groupId>
  70. <artifactId>snmp4j</artifactId>
  71. <version>2.8.12</version>
  72. </dependency>
  73. <!-- 项目中建议尽量使用mybaitis 不要使用mbp -->
  74. <dependency>
  75. <groupId>org.mybatis.spring.boot</groupId>
  76. <artifactId>mybatis-spring-boot-starter</artifactId>
  77. <version>2.2.2</version>
  78. </dependency>
  79. <!-- 不推荐使用mbp -->
  80. <dependency>
  81. <groupId>com.baomidou</groupId>
  82. <artifactId>mybatis-plus-boot-starter</artifactId>
  83. <version>3.4.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-logging</groupId>
  87. <artifactId>commons-logging</artifactId>
  88. <version>1.2</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>fastjson</artifactId>
  93. <version>2.0.9.graal</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.mina</groupId>
  97. <artifactId>mina-core</artifactId>
  98. <version>2.0.23</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-configuration</groupId>
  102. <artifactId>commons-configuration</artifactId>
  103. <version>1.10</version>
  104. </dependency>
  105. </dependencies>
  106. </dependencyManagement>
  107. </project>