pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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</version>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>common</module>
  15. <module>main</module>
  16. </modules>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <maven.compiler.source>1.8</maven.compiler.source>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  23. </properties>
  24. <dependencyManagement>
  25. <dependencies>
  26. <!-- https://mvnrepository.com/artifact/de.siegmar/fastcsv -->
  27. <dependency>
  28. <groupId>de.siegmar</groupId>
  29. <artifactId>fastcsv</artifactId>
  30. <version>2.2.0</version>
  31. <scope>test</scope>
  32. </dependency>
  33. <!-- commons-csv -->
  34. <dependency>
  35. <groupId>org.apache.commons</groupId>
  36. <artifactId>commons-csv</artifactId>
  37. <version>1.9.0</version>
  38. </dependency>
  39. <!-- commons-beanutils -->
  40. <dependency>
  41. <groupId>commons-beanutils</groupId>
  42. <artifactId>commons-beanutils-core</artifactId>
  43. <version>1.8.3</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpclient</artifactId>
  48. <version>4.5.13</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.httpcomponents</groupId>
  52. <artifactId>httpmime</artifactId>
  53. <version>4.5</version>
  54. </dependency>
  55. <!-- snmp协议的实现 -->
  56. <dependency>
  57. <groupId>org.snmp4j</groupId>
  58. <artifactId>snmp4j</artifactId>
  59. <version>2.8.12</version>
  60. </dependency>
  61. <!-- 项目中建议尽量使用mybaitis 不要使用mbp -->
  62. <dependency>
  63. <groupId>org.mybatis.spring.boot</groupId>
  64. <artifactId>mybatis-spring-boot-starter</artifactId>
  65. <version>2.2.2</version>
  66. </dependency>
  67. <!-- 不推荐使用mbp -->
  68. <dependency>
  69. <groupId>com.baomidou</groupId>
  70. <artifactId>mybatis-plus-boot-starter</artifactId>
  71. <version>3.4.2</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>commons-logging</groupId>
  75. <artifactId>commons-logging</artifactId>
  76. <version>1.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>fastjson</artifactId>
  81. <version>2.0.9.graal</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.mina</groupId>
  85. <artifactId>mina-core</artifactId>
  86. <version>2.0.23</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>commons-configuration</groupId>
  90. <artifactId>commons-configuration</artifactId>
  91. <version>1.10</version>
  92. </dependency>
  93. </dependencies>
  94. </dependencyManagement>
  95. </project>